Search in sources :

Example 21 with GroupPromoteResult

use of org.commonjava.indy.promote.model.GroupPromoteResult in project indy by Commonjava.

the class ArtifactRefs_DependencyTwoExtraGroups_RuleTest method run.

@Test
@Category(EventDependent.class)
public void run() throws Exception {
    String invalid = "org/foo/invalid/1/invalid-1.pom";
    String valid = "org/foo/valid/1.1/valid-1.1.pom";
    String dep1Pom = "org/bar/dep/1.0/dep-1.0.pom";
    String dep1Jar = "org/bar/dep/1.0/dep-1.0.jar";
    String dep2Pom = "org/blat/dep2/1.0/dep2-1.0.pom";
    String dep2Jar = "org/blat/dep2/1.0/dep2-1.0.jar";
    String content = "this is some content";
    client.content().store(otherSource.getKey(), dep1Pom, new ByteArrayInputStream(content.getBytes()));
    client.content().store(otherSource.getKey(), dep1Jar, new ByteArrayInputStream(content.getBytes()));
    client.content().store(thirdSource.getKey(), dep2Pom, new ByteArrayInputStream(content.getBytes()));
    client.content().store(thirdSource.getKey(), dep2Jar, new ByteArrayInputStream(content.getBytes()));
    InputStream stream = client.content().get(other.getKey(), dep1Pom);
    String retrieved = IOUtils.toString(stream);
    stream.close();
    assertThat(dep1Pom + " invalid from: " + other.getKey(), retrieved, equalTo(content));
    stream = client.content().get(other.getKey(), dep1Jar);
    retrieved = IOUtils.toString(stream);
    stream.close();
    assertThat(dep1Jar + " invalid from: " + other.getKey(), retrieved, equalTo(content));
    deployResource(invalid, PREFIX + "invalid-external-dep.pom.xml");
    deployResource(valid, PREFIX + "valid-two-external-deps.pom.xml");
    waitForEventPropagation();
    GroupPromoteRequest request = new GroupPromoteRequest(source.getKey(), target.getName());
    GroupPromoteResult result = module.promoteToGroup(request);
    assertThat(result, notNullValue());
    ValidationResult validations = result.getValidations();
    assertThat(validations, notNullValue());
    Map<String, String> validatorErrors = validations.getValidatorErrors();
    assertThat(validatorErrors, notNullValue());
    System.out.println(validatorErrors);
    String errors = validatorErrors.get(RULE);
    assertThat(errors, notNullValue());
    System.out.println(validatorErrors);
    assertThat(errors.contains(valid), equalTo(false));
    assertThat(errors.contains(invalid), equalTo(true));
}
Also used : GroupPromoteRequest(org.commonjava.indy.promote.model.GroupPromoteRequest) ByteArrayInputStream(java.io.ByteArrayInputStream) ByteArrayInputStream(java.io.ByteArrayInputStream) InputStream(java.io.InputStream) GroupPromoteResult(org.commonjava.indy.promote.model.GroupPromoteResult) ValidationResult(org.commonjava.indy.promote.model.ValidationResult) Category(org.junit.experimental.categories.Category) Test(org.junit.Test)

Example 22 with GroupPromoteResult

use of org.commonjava.indy.promote.model.GroupPromoteResult in project indy by Commonjava.

the class NoSnapshots_PluginVersion_RuleTest method run.

@Test
@Category(EventDependent.class)
public void run() throws Exception {
    String invalid = "org/foo/invalid/1/invalid-1.pom";
    String valid = "org/foo/valid/1.1/valid-1.1.pom";
    deploy(invalid, "<?xml version=\"1.0\"?>\n<project><modelVersion>4.0.0</modelVersion><groupId>org.foo</groupId>" + "<artifactId>invalid</artifactId><version>1</version><build><plugins>" + "<plugin><groupId>org.bar</groupId><artifactId>plugin</artifactId>" + "<version>1.0-SNAPSHOT</version></plugin></plugins></build></project>");
    deploy(valid, "<?xml version=\"1.0\"?>\n<project><modelVersion>4.0.0</modelVersion><groupId>org.foo</groupId>" + "<artifactId>valid</artifactId><version>1.1</version><build><plugins>\"\n" + "                + \"<plugin><groupId>org.bar</groupId><artifactId>plugin</artifactId>\"\n" + "                + \"<version>1.0</version></plugin></plugins></build></project>");
    waitForEventPropagation();
    GroupPromoteRequest request = new GroupPromoteRequest(source.getKey(), target.getName());
    GroupPromoteResult result = module.promoteToGroup(request);
    assertThat(result, notNullValue());
    ValidationResult validations = result.getValidations();
    assertThat(validations, notNullValue());
    Map<String, String> validatorErrors = validations.getValidatorErrors();
    assertThat(validatorErrors, notNullValue());
    System.out.println(validatorErrors);
    String errors = validatorErrors.get(RULE);
    assertThat("There should have been some validation errors!", errors, notNullValue());
    System.out.println(validatorErrors);
    assertThat("Validation errors should not originate from: " + valid, errors.contains(valid), equalTo(false));
    assertThat("Validation errors should originate from: " + invalid, errors.contains(invalid), equalTo(true));
}
Also used : GroupPromoteRequest(org.commonjava.indy.promote.model.GroupPromoteRequest) GroupPromoteResult(org.commonjava.indy.promote.model.GroupPromoteResult) ValidationResult(org.commonjava.indy.promote.model.ValidationResult) Category(org.junit.experimental.categories.Category) Test(org.junit.Test)

Example 23 with GroupPromoteResult

use of org.commonjava.indy.promote.model.GroupPromoteResult in project indy by Commonjava.

the class NoSnapshots_ProjectVersion_RuleTest method run.

@Test
@Category(EventDependent.class)
public void run() throws Exception {
    String invalid = "org/foo/invalid/1-SNAPSHOT/invalid-1-SNAPSHOT.pom";
    String valid = "org/foo/valid/1.1/valid-1.1.pom";
    deploy(invalid, "<?xml version=\"1.0\"?>\n<project><modelVersion>4.0.0</modelVersion><groupId>org.foo</groupId>" + "<artifactId>invalid</artifactId><version>1-SNAPSHOT</version></project>");
    deploy(valid, "<?xml version=\"1.0\"?>\n<project><modelVersion>4.0.0</modelVersion><groupId>org.foo</groupId>" + "<artifactId>valid</artifactId><version>1.1</version></project>");
    waitForEventPropagation();
    GroupPromoteRequest request = new GroupPromoteRequest(source.getKey(), target.getName());
    GroupPromoteResult result = module.promoteToGroup(request);
    assertThat(result, notNullValue());
    ValidationResult validations = result.getValidations();
    assertThat(validations, notNullValue());
    Map<String, String> validatorErrors = validations.getValidatorErrors();
    assertThat(validatorErrors, notNullValue());
    System.out.println(validatorErrors);
    String errors = validatorErrors.get(RULE);
    assertThat(errors, notNullValue());
    System.out.println(validatorErrors);
    assertThat(errors.contains(valid), equalTo(false));
    assertThat(errors.contains(invalid), equalTo(true));
}
Also used : GroupPromoteRequest(org.commonjava.indy.promote.model.GroupPromoteRequest) GroupPromoteResult(org.commonjava.indy.promote.model.GroupPromoteResult) ValidationResult(org.commonjava.indy.promote.model.ValidationResult) Category(org.junit.experimental.categories.Category) Test(org.junit.Test)

Aggregations

GroupPromoteResult (org.commonjava.indy.promote.model.GroupPromoteResult)23 GroupPromoteRequest (org.commonjava.indy.promote.model.GroupPromoteRequest)22 Test (org.junit.Test)20 ValidationResult (org.commonjava.indy.promote.model.ValidationResult)16 Category (org.junit.experimental.categories.Category)15 Group (org.commonjava.indy.model.core.Group)7 InputStream (java.io.InputStream)5 IndyPromoteClientModule (org.commonjava.indy.promote.client.IndyPromoteClientModule)5 ByteArrayInputStream (java.io.ByteArrayInputStream)4 ChangeSummary (org.commonjava.indy.audit.ChangeSummary)2 IndyDataException (org.commonjava.indy.data.IndyDataException)2 AbstractContentManagementTest (org.commonjava.indy.ftest.core.AbstractContentManagementTest)2 HostedRepository (org.commonjava.indy.model.core.HostedRepository)2 EventMetadata (org.commonjava.maven.galley.event.EventMetadata)2 IOException (java.io.IOException)1 IndyClientException (org.commonjava.indy.client.core.IndyClientException)1 StoreKey (org.commonjava.indy.model.core.StoreKey)1