コード例 #1
0
 private static void writeJettyXml(JavaResource resource, File outputDirectory, File realmFile)
     throws IOException {
   File file = new File(outputDirectory, "jetty.xml");
   String content =
       resource.asUTF8String().replace("${realm.properties}", realmFile.getAbsolutePath());
   Files.write(content, file, UTF_8);
 }
コード例 #2
0
 private static File copyRealmFileToConfiguration(File tempDir) throws IOException {
   File file = new File(tempDir, "realm.properties");
   Files.write(realmProperties.asUTF8String(), file, UTF_8);
   return file;
 }
コード例 #3
0
public class SecurityLevelAuthorizedIT extends SchedulerTest {

  private static final String generalPassword = "******";
  private static final JavaResource jettyXmlTemplateResource =
      JavaResource.apply(
          "com/sos/scheduler/engine/plugins/jetty/tests/securitylevel/authorized/jetty-template.xml");
  private static final JavaResource realmProperties =
      JavaResource.apply(
          "com/sos/scheduler/engine/plugins/jetty/tests/securitylevel/authorized/realm.properties");
  private static final String anonymousUser = "******";
  private static final String xmlCommand =
      new CommandBuilder().startJobImmediately("a").getCommand();

  public SecurityLevelAuthorizedIT() {
    super(
        new TestConfigurationBuilder(SecurityLevelAuthorizedIT.class)
            .terminateOnError(
                false) // SCHEDULER-121  The security settings do not allow this operation
            .build());
  }

  @Test
  public void test() throws Exception {
    controller().prepare();
    prepareEnvironment();
    controller().activateScheduler();
    testUser("infouser", OK, "SCHEDULER-121");
    testUser("alluser", OK, "task enqueued");
    testUser("nonuser", NOT_FOUND, ""); // scheduler detects bad request
    testUser(
        "unknownsecleveluser", FORBIDDEN, ""); // role SecurityLevel.unknown not defined in web.xml
    testUser("normaluser", OK, "SCHEDULER-121");
    testUser(anonymousUser, UNAUTHORIZED, "");
  }

  public void testUser(String userName, ClientResponse.Status expectedStatus, String expectedResult)
      throws Exception {
    Client webClient = Client.create();
    webClient.addFilter(new HTTPBasicAuthFilter(userName, generalPassword));
    WebResource webResource =
        webClient.resource(
            new URI(contextUri(scheduler().injector()) + "/jobscheduler/engine-cpp/command"));
    ClientResponse response = webResource.post(ClientResponse.class, xmlCommand);
    assertThat(response.getStatus(), equalTo(expectedStatus.getStatusCode()));
    assertThat(response.getEntity(String.class), containsString(expectedResult));
    webClient.destroy();
  }

  private void prepareEnvironment() throws Exception {
    File tempDir = controller().environment().configDirectory();
    File target = copyRealmFileToConfiguration(tempDir);
    writeJettyXml(jettyXmlTemplateResource, tempDir, target);
  }

  private static File copyRealmFileToConfiguration(File tempDir) throws IOException {
    File file = new File(tempDir, "realm.properties");
    Files.write(realmProperties.asUTF8String(), file, UTF_8);
    return file;
  }

  private static void writeJettyXml(JavaResource resource, File outputDirectory, File realmFile)
      throws IOException {
    File file = new File(outputDirectory, "jetty.xml");
    String content =
        resource.asUTF8String().replace("${realm.properties}", realmFile.getAbsolutePath());
    Files.write(content, file, UTF_8);
  }
}