def before_first(): app_logger().info('Handling database init') if application.debug: # Debug/local dev default_database(Database('sqlite', filename=project_file('.test.db'))) else: # Production! default_database(Database('dynamodb')) # Make sure we have our tables User.ensure_table() Transcript.ensure_table() Taxonomy.ensure_table() # Some debug data we might find useful if application.debug: TEST_EMAIL = application.config.get('TEST_EMAIL') me = first(User.find_by_index('idx_email', TEST_EMAIL)) if not me: me = User(name='Test User', email=TEST_EMAIL) me.save() if not Transcript.find_all(): ts1 = Transcript.from_xml_file( project_file('test/sample/SampleTranscript.xml') ) ts1.script_identifier = 'Original Owned' ts1.owner = me.id ts1.tagger = '' ts1.id = '' ts1.save() ts2 = Transcript.from_xml_file( project_file('test/sample/SampleTranscript.xml') ) ts2.script_identifier = 'New Assigned' ts2.owner = me.id ts2.tagger = me.id ts2.source_transcript = ts1.id ts2.id = '' # Ensure new id on save ts2.save()
def testDefaultRead(self): def_tax = project_file('config/default_taxonomy.yaml') tax = Taxonomy.from_yaml_file(def_tax) tax.validate()