public InvalidJdxProcessingFixture(OsdrTestHarness harness)
        {
            BlobId = harness.JohnBlobStorageClient.AddResource(harness.JohnId.ToString(), "13Csample.jdx", new Dictionary <string, object>()
            {
                { "parentId", harness.JohnId }
            }).Result;

            FileId = harness.WaitWhileRecordsFileProcessed(BlobId);
        }
Exemple #2
0
        public ImageProcessingFixture(OsdrTestHarness harness)
        {
            BlobId = harness.JohnBlobStorageClient.AddResource(harness.JohnId.ToString(), "Chemical-diagram.png", new Dictionary <string, object>()
            {
                { "parentId", harness.JohnId }
            }).Result;

            FileId = harness.WaitWhileFileProcessed(BlobId);
        }
Exemple #3
0
        public ValidSdfProcessingFixture(OsdrTestHarness harness)
        {
            BlobId = harness.JohnBlobStorageClient.AddResource(harness.JohnId.ToString(), "drugbank_10_records.sdf", new Dictionary <string, object>()
            {
                { "parentId", harness.JohnId }
            }).Result;

            FileId = harness.WaitWhileRecordsFileProcessed(BlobId);
        }
Exemple #4
0
 public OsdrWebTest(OsdrTestHarness fixture, ITestOutputHelper output = null) : base(fixture)
 {
     if (output != null)
     {
         Log.Logger = new LoggerConfiguration()
                      .MinimumLevel.Debug()
                      .WriteTo
                      .TestOutput(output, LogEventLevel.Verbose)
                      .CreateLogger()
                      .ForContext <OsdrTest>();
     }
 }
 public InvalidJdxProcessing(OsdrTestHarness fixture, ITestOutputHelper output, InvalidJdxProcessingFixture initFixture) : base(fixture, output)
 {
     BlobId = initFixture.BlobId;
     FileId = initFixture.FileId;
 }