Ejemplo n.º 1
0
  public void testPrintf() {
    // Store a file with the API, then GET via WebDAV. (It's like
    // printf because the webdav server is combining four values into
    // the filename.)
    TestCase self = initTest("Printf");
    if (self == null) return;

    try {
      Map file = apiCreateFile();

      String oid = (String) file.get("system.object_id");
      String url = getURL(file);

      Log.DEBUG("WebDAVFilenames: Stored " + oid + " with API, looking for file \"" + url + "\"");

      if (dav.exists(url)) {
        self.testPassed("OK");
        return;
      }

      self.testFailed("File \"" + url + "\" not found");
    } catch (Exception e) {
      e.printStackTrace();
      self.testFailed(e.getMessage());
    }
  }
Ejemplo n.º 2
0
  public void testDirScanf() {

    TestCase self = initTest("DirScanf");
    if (self == null) return;

    try {
      Map file = webdavCreateFileWithSpecialDirs();

      String oid = (String) file.get("system.object_id");
      String url = getURL(file);

      if (!dav.exists(url)) {
        self.testFailed("File can't be retrieved from stored URL \"" + url + "\"");
        return;
      }

      Log.INFO("WebDAVFilenames: PUT \"" + url + "\" with WebDAV, OID " + oid);

      Map retrieved = apiRetrieveMD(oid);

      DavTestSchema.compareMaps(file, retrieved);

      self.testPassed("OK");
    } catch (Exception e) {
      e.printStackTrace();
      self.testFailed(e.getMessage());
    }
  }
Ejemplo n.º 3
0
  public void testScanf() {
    // PUT a file into a view, then retrieve the file's metadata
    // with the API and check all string values. (It's like scanf
    // because the webdav server has to parse out four values from
    // the filename.)

    TestCase self = initTest("Scanf");
    if (self == null) return;

    try {
      Map file = webdavCreateFile();

      String oid = (String) file.get("system.object_id");
      String url = getURL(file);

      if (!dav.exists(url)) {
        self.testFailed("File can't be retrieved from stored URL \"" + url + "\"");
        return;
      }

      Log.INFO("WebDAVFilenames: PUT \"" + url + "\" with WebDAV, OID " + oid);

      Map retrieved = apiRetrieveMD(oid);

      DavTestSchema.compareMaps(file, retrieved);

      self.testPassed("OK");
    } catch (Exception e) {
      e.printStackTrace();
      self.testFailed(e.getMessage());
    }
  }
Ejemplo n.º 4
0
  private Map webdavCreateFile(boolean useSpecials)
      throws HoneycombTestException, ArchiveException, IOException {
    CmdResult rc;
    HashMap md = newFactoryMD(false);
    addStrings(md, useSpecials);

    String url = getURL(md);

    rc = dav.putFile(url, FILESIZE, false);
    if (!rc.pass) return null;

    md.put("system.object_id", rc.mdoid);
    return md;
  }
Ejemplo n.º 5
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");
    }
  }
Ejemplo n.º 6
0
  public void testDirPrintf() {
    // Same as testPrintf except with directory names
    TestCase self = initTest("DirPrintf");
    if (self == null) return;

    try {
      Map file = apiCreateFileWithSpecialDirs();

      String oid = (String) file.get("system.object_id");
      String url = getURL(file);

      Log.DEBUG("WebDAVFilenames: Stored " + oid + " with API, looking for file \"" + url + "\"");

      if (dav.exists(url)) {
        self.testPassed("OK");
        return;
      }

      self.testFailed("File \"" + url + "\" not found");
    } catch (Exception e) {
      e.printStackTrace();
      self.testFailed(e.getMessage());
    }
  }