Exemplo n.º 1
0
def test_ssap_mongo_sync(test_object):
    dsn = f"{test_object.mongo_ds}"
    res = tasks.run_ssap(test_object.id1,
                         test_object.id2,
                         cath_version=test_object.cath_version,
                         pdb_path=test_object.pdb_path,
                         datastore_dsn=dsn)
Exemplo n.º 2
0
def test_ssap_redis_sync(test_object):
    ds = test_object.redis_ds
    res = tasks.run_ssap(test_object.id1,
                         test_object.id2,
                         cath_version=test_object.cath_version,
                         pdb_path=test_object.pdb_path,
                         datastore_dsn='redis://localhost')
Exemplo n.º 3
0
 def test_ssap_mongo_sync(self):
     dsn = f"{self.mongo_ds}"
     res = tasks.run_ssap(self.id1,
                          self.id2,
                          cath_version=self.cath_version,
                          datastore_dsn=dsn)
Exemplo n.º 4
0
 def test_ssap_redis_sync(self):
     ds = self.redis_ds
     res = tasks.run_ssap(self.id1,
                          self.id2,
                          cath_version=self.cath_version,
                          datastore_dsn='redis://localhost')