def setUp(self): GLSetting.set_devel_mode() GLSetting.logging = None GLSetting.scheduler_threadpool = FakeThreadPool() GLSetting.memory_copy.allow_unencrypted = True GLSetting.sessions = {} GLSetting.failed_login_attempts = 0 GLSetting.working_path = './working_path' GLSetting.ramdisk_path = './working_path/ramdisk' GLSetting.eval_paths() GLSetting.remove_directories() GLSetting.create_directories() self.setUp_dummy() # This mocks out the MailNotification plugin so it does not actually # require to perform a connection to send an email. # XXX we probably want to create a proper mock of the ESMTPSenderFactory def mail_flush_mock(self, from_address, to_address, message_file, event): return defer.succeed(None) notification.MailNotification.mail_flush = mail_flush_mock return db.create_tables(create_node=True)
def setUp(self): GLSetting.set_devel_mode() GLSetting.logging = None GLSetting.scheduler_threadpool = FakeThreadPool() GLSetting.sessions = {} GLSetting.failed_login_attempts = 0 if os.path.isdir('/dev/shm'): GLSetting.working_path = '/dev/shm/globaleaks' GLSetting.ramdisk_path = '/dev/shm/globaleaks/ramdisk' else: GLSetting.working_path = './working_path' GLSetting.ramdisk_path = './working_path/ramdisk' GLSetting.eval_paths() GLSetting.remove_directories() GLSetting.create_directories() self.setUp_dummy() yield db.create_tables(self.create_node) for fixture in getattr(self, 'fixtures', []): yield import_fixture(fixture) yield import_memory_variables() # overrid of imported memory variables GLSetting.memory_copy.allow_unencrypted = True anomaly.Alarm.reset() anomaly.EventTrackQueue.reset() statistics_sched.StatisticsSchedule.reset()
def setUp(self): GLSetting.set_devel_mode() GLSetting.logging = None GLSetting.scheduler_threadpool = FakeThreadPool() GLSetting.sessions = {} GLSetting.failed_login_attempts = 0 if os.path.isdir('/dev/shm'): GLSetting.working_path = '/dev/shm/globaleaks' GLSetting.ramdisk_path = '/dev/shm/globaleaks/ramdisk' else: GLSetting.working_path = './working_path' GLSetting.ramdisk_path = './working_path/ramdisk' GLSetting.eval_paths() GLSetting.remove_directories() GLSetting.create_directories() self.setUp_dummy() yield db.create_tables(self.create_node) for fixture in getattr(self, 'fixtures', []): yield import_fixture(fixture) yield import_memory_variables() # override of imported memory variables GLSetting.memory_copy.allow_unencrypted = True anomaly.Alarm.reset() event.EventTrackQueue.reset() statistics_sched.StatisticsSchedule.reset()
def setUp(self): GLSetting.set_devel_mode() GLSetting.scheduler_threadpool = FakeThreadPool() GLSetting.sessions = {} GLSetting.failed_login_attempts = dict() GLSetting.failed_login_attempts_wb = 0 GLSetting.working_path = os.path.abspath(os.path.join(GLSetting.root_path, 'testing_dir')) GLSetting.eval_paths() GLSetting.remove_directories() GLSetting.create_directories() return db.create_tables(create_node=True)
def globaleaks_start(): GLSetting.fix_file_permissions() GLSetting.drop_privileges() GLSetting.check_directories() if not GLSetting.accepted_hosts: log.err("Missing a list of hosts usable to contact GLBackend, abort") return False if not check_schema_version(): return False d = create_tables() @d.addCallback @inlineCallbacks def cb(res): start_asynchronous() yield import_memory_variables() yield apply_cli_options() log.msg("GLBackend is now running") for ip in GLSetting.bind_addresses: log.msg("Visit http://%s:%d to interact with me" % (ip, GLSetting.bind_port)) for host in GLSetting.accepted_hosts: if host not in GLSetting.bind_addresses: log.msg("Visit http://%s:%d to interact with me" % (host, GLSetting.bind_port)) return True
def setUp(self): GLSetting.set_devel_mode() GLSetting.logging = None GLSetting.scheduler_threadpool = FakeThreadPool() GLSetting.memory_copy.allow_unencrypted = True GLSetting.sessions = {} GLSetting.failed_login_attempts = 0 if os.path.isdir('/dev/shm'): GLSetting.working_path = '/dev/shm/globaleaks' GLSetting.ramdisk_path = '/dev/shm/globaleaks/ramdisk' else: GLSetting.working_path = './working_path' GLSetting.ramdisk_path = './working_path/ramdisk' GLSetting.eval_paths() GLSetting.remove_directories() GLSetting.create_directories() self.setUp_dummy() # This mocks out the MailNotification plugin so it does not actually # require to perform a connection to send an email. # XXX we probably want to create a proper mock of the ESMTPSenderFactory def mail_flush_mock(self, from_address, to_address, message_file, event): return defer.succeed(None) notification.MailNotification.mail_flush = mail_flush_mock yield db.create_tables(self.create_node) for fixture in getattr(self, 'fixtures', []): yield import_fixture(fixture) import_memory_variables() anomaly.Alarm.reset() anomaly.EventTrackQueue.reset() statistics_sched.StatisticsSchedule.reset()
def globaleaks_start(): GLSetting.fix_file_permissions() GLSetting.drop_privileges() GLSetting.check_directories() if not GLSetting.accepted_hosts: log.err("Missing a list of hosts usable to contact GLBackend, abort") return False if not check_schema_version(): return False d = create_tables() d.addCallback(clean_untracked_files) @d.addCallback @inlineCallbacks def cb(res): start_asynchronous() yield import_memory_variables() tor_configured_hosts = yield apply_cli_options() log.msg("GLBackend is now running") for ip in GLSetting.bind_addresses: log.msg("Visit http://%s:%d to interact with me" % (ip, GLSetting.bind_port)) for host in GLSetting.accepted_hosts: if host not in GLSetting.bind_addresses: log.msg("Visit http://%s:%d to interact with me" % (host, GLSetting.bind_port)) if tor_configured_hosts: for other in tor_configured_hosts: if other: log.msg("Visit %s to interact with me" % other) log.msg( "Remind: GlobaLeaks is not accessible from other URLs, this is strictly enforced" ) log.msg( "Check documentation in https://github.com/globaleaks/GlobaLeaks/wiki/ for special enhancement" ) return True
def globaleaks_start(): GLSetting.fix_file_permissions() GLSetting.drop_privileges() GLSetting.check_directories() if not GLSetting.accepted_hosts: log.err("Missing a list of hosts usable to contact GLBackend, abort") return False if not check_schema_version(): return False d = create_tables() d.addCallback(clean_untracked_files) @d.addCallback @inlineCallbacks def cb(res): start_asynchronous() yield import_memory_variables() tor_configured_hosts = yield apply_cli_options() log.msg("GLBackend is now running") for ip in GLSetting.bind_addresses: log.msg("Visit http://%s:%d to interact with me" % (ip, GLSetting.bind_port)) for host in GLSetting.accepted_hosts: if host not in GLSetting.bind_addresses: log.msg("Visit http://%s:%d to interact with me" % (host, GLSetting.bind_port)) if tor_configured_hosts: for other in tor_configured_hosts: if other: log.msg("Visit %s to interact with me" % other) log.msg("Remind: GlobaLeaks is not accessible from other URLs, this is strictly enforced") log.msg("Check documentation in https://github.com/globaleaks/GlobaLeaks/wiki/ for special enhancement") return True