コード例 #1
0
ファイル: test_server.py プロジェクト: coycooper/Projects_Coy
    def setUp(self):
        coord_address = CoordAddress.translate(
                "server0:instance0@machine0")

        self.cfg_manager = ConfigurationManager.ConfigurationManager()
        self.cfg_manager.append_module(configuration_module)

        self.core_server = UserProcessingServer(coord_address, None, self.cfg_manager)
コード例 #2
0
ファイル: app.py プロジェクト: coycooper/Projects_Coy
#############################################
# 
# The code below is only used for testing
# 

if __name__ == '__main__':
    from voodoo.configuration import ConfigurationManager
    from weblab.core.server import UserProcessingServer
    from weblab.core.i18n import initialize_i18n
    from flask_debugtoolbar import DebugToolbarExtension

    cfg_manager = ConfigurationManager()
    cfg_manager.append_path('test/unit/configuration.py')

    ups = UserProcessingServer(None, None, cfg_manager, dont_start = True)

    app = Flask('weblab.core.server')
    app.config['SECRET_KEY'] = os.urandom(32)
    app.config['DEBUG_TB_INTERCEPT_REDIRECTS'] = False
    app.config['DEBUG'] = True

    @app.route("/site-map")
    def site_map():
        lines = []
        for rule in app.url_map.iter_rules():
            line = str(escape(repr(rule)))
            lines.append(line)

        ret = "<br>".join(lines)
        return ret
コード例 #3
0
ファイル: test_server.py プロジェクト: coycooper/Projects_Coy
class LoginServerTestCase(unittest.TestCase):

    def setUp(self):
        coord_address = CoordAddress.translate(
                "server0:instance0@machine0")

        self.cfg_manager = ConfigurationManager.ConfigurationManager()
        self.cfg_manager.append_module(configuration_module)

        self.core_server = UserProcessingServer(coord_address, None, self.cfg_manager)

    def tearDown(self):
        self.core_server.stop()

    def test_invalid_user_and_invalid_password(self):
        login_manager.LOGIN_FAILED_DELAY = 0.2
        with wlcontext(self.core_server):
            self.assertRaises(
                LoginErrors.InvalidCredentialsError,
                core_api.login,
                fake_wrong_user,
                fake_wrong_passwd
            )

    def test_valid_user_and_invalid_password(self):
        login_manager.LOGIN_FAILED_DELAY = 0.2
        with wlcontext(self.core_server):
            self.assertRaises(
                LoginErrors.InvalidCredentialsError,
                core_api.login,
                fake_right_user,
                fake_wrong_passwd
            )

    @unittest.skipIf(not LDAP_AVAILABLE, "LDAP module not available")
    def test_ldap_user_right(self):
        mockr = mocker.Mocker()
        ldap_auth._ldap_provider.ldap_module = mockr.mock()
        with wlcontext(self.core_server):
            session_id = core_api.login(fake_ldap_user, fake_ldap_passwd)

        self.assertTrue( isinstance(session_id, SessionId) )
        self.assertTrue( len(session_id.id) > 5 )

    @unittest.skipIf(not LDAP_AVAILABLE, "LDAP module not available")
    def test_ldap_user_invalid(self):
        mockr = mocker.Mocker()
        ldap_object = mockr.mock()
        ldap_object.simple_bind_s(fake_ldap_user + '@cdk.deusto.es', fake_ldap_invalid_passwd)
        mockr.throw(ldap.INVALID_CREDENTIALS)
        ldap_module = mockr.mock()
        ldap_module.initialize('ldaps://castor.cdk.deusto.es')
        mockr.result(ldap_object)
        ldap_auth._ldap_provider.ldap_module = ldap_module

        with wlcontext(self.core_server):
            with mockr:
                self.assertRaises(
                    LoginErrors.InvalidCredentialsError,
                    core_api.login,
                    fake_ldap_user,
                    fake_ldap_invalid_passwd
                )

    def test_login_delay(self):
        login_manager.LOGIN_FAILED_DELAY = 0.2
        #Sometimes it's 0.999323129654
        #0.001 should be ok, but just in case
        ERROR_MARGIN = 0.01
        start_time = time.time()
        with wlcontext(self.core_server):
            self.assertRaises(
                    LoginErrors.InvalidCredentialsError,
                    core_api.login,
                    fake_wrong_user,
                    fake_wrong_passwd
                )
        finish_time = time.time()
        self.assertTrue((finish_time + ERROR_MARGIN - start_time) >= login_manager.LOGIN_FAILED_DELAY)

    def test_right_session(self):
        with wlcontext(self.core_server):
            session_id = core_api.login(fake_right_user, fake_right_passwd)
            self.assertTrue( isinstance(session_id, SessionId) )
            self.assertTrue( len(session_id.id) > 5 )