/** Store a file. */
  public void setUp() throws Throwable {
    Log.DEBUG(this.getClass().getName() + "::setUp() called");

    super.setUp();

    setFilesize(HoneycombTestConstants.DEFAULT_FILESIZE_SMALL);

    doStoreTestNow();
  }
Esempio n. 2
0
  public void setUp() throws Throwable {
    Log.DEBUG("WebDAVFilenames.setUp() called");
    super.setUp();

    TestCase skip = createTestCase("WebDAVFilenames", "Test virtual view filenames.");
    skip.addTag(HoneycombTag.WEBDAV);
    skip.addTag(HoneycombTag.EMULATOR);
    skip.addTag(Tag.REGRESSION);
    skip.addTag(Tag.SMOKE);
    skip.addTag(Tag.UNIT);
    skip.addTag(Tag.QUICK);
    if (skip.excludeCase()) // should I run?
    return;

    vip = testBed.getDataVIP();
    port = testBed.getDataPort();

    try {
      api = new NameValueObjectArchive(vip, port);
    } catch (Exception e) {
      e.printStackTrace();
      TestCase self = createTestCase("WebDAV", "getAPIConnection");
      self.testFailed("Couldn't get API connection: " + e);
      return;
    }

    try {
      dav = new WebDAVer(vip + ":" + port);
      // Make sure the view exists
      if (!dav.exists("/webdav/davtestFnames/")) {
        Log.ERROR("No view \"davtestFnames\" -- check schema.");
        dav = null;
      }
    } catch (Exception e) {
      e.printStackTrace();
    }

    if (dav == null) {
      TestCase self = createTestCase("WebDAV", "getDAVConnection");
      self.testFailed("Failed to get webdav connection");
    }
  }
 public void tearDown() throws Throwable {
   Log.DEBUG(this.getClass().getName() + "::tearDown() called");
   super.tearDown();
 }
Esempio n. 4
0
 public void tearDown() throws Throwable {
   Log.DEBUG("WebDAVFilenames.tearDown() called");
   super.tearDown();
 }
  public void setUp() throws Throwable {
    Log.DEBUG(this.getClass().getName() + "::setUp() called");

    super.setUp();
  }