コード例 #1
0
  private FirefoxDriver getNegotiatingFirefox(KerberosContainer kdc, String tokenCache) {
    FirefoxProfile profile = new FirefoxProfile();
    profile.setAlwaysLoadNoFocusLib(true);
    // Allow auth negotiation for jenkins under test
    profile.setPreference("network.negotiate-auth.trusted-uris", jenkins.url.toExternalForm());
    profile.setPreference("network.negotiate-auth.delegation-uris", jenkins.url.toExternalForm());
    FirefoxBinary binary = new FirefoxBinary();
    // Inject config and TGT
    binary.setEnvironmentProperty("KRB5CCNAME", tokenCache);
    binary.setEnvironmentProperty("KRB5_CONFIG", kdc.getKrb5ConfPath());
    // Turn debug on
    binary.setEnvironmentProperty("KRB5_TRACE", diag.touch("tracelog").getAbsolutePath());
    binary.setEnvironmentProperty("NSPR_LOG_MODULES", "negotiateauth:5");
    binary.setEnvironmentProperty(
        "NSPR_LOG_FILE", diag.touch("firefox.nego.log").getAbsolutePath());

    String display = FallbackConfig.getBrowserDisplay();
    if (display != null) {
      binary.setEnvironmentProperty("DISPLAY", display);
    }
    final FirefoxDriver driver = new FirefoxDriver(binary, profile);
    cleaner.addTask(
        new Statement() {
          @Override
          public void evaluate() throws Throwable {
            try {
              driver.quit();
            } catch (UnreachableBrowserException ex) {
              System.err.println("Browser died already");
              ex.printStackTrace();
            }
          }

          @Override
          public String toString() {
            return "Close Kerberos WebDriver after test";
          }
        });
    return driver;
  }
コード例 #2
0
 /** Start KDC container populating target dir with generated keytabs and config files. */
 private KerberosContainer startKdc() throws IOException {
   KerberosContainer kdc = kerberos.get();
   File target = diag.mkdirs("target"); // Keep the data for diagnostics
   kdc.populateTargetDir(target);
   return kdc;
 }