Search in sources :

Example 6 with TrackedContentEntryDTO

use of org.commonjava.indy.folo.dto.TrackedContentEntryDTO in project indy by Commonjava.

the class RetrieveFileFromGroupAndVerifyInTrackingReportTest method run.

@Test
public void run() throws Exception {
    final String trackingId = newName();
    final String repoId = "repo";
    final String groupId = "group";
    final String path = "/path/to/foo.class";
    final InputStream stream = new ByteArrayInputStream(("This is a test: " + System.nanoTime()).getBytes());
    server.expect(server.formatUrl(repoId, path), 200, stream);
    RemoteRepository rr = new RemoteRepository(repoId, server.formatUrl(repoId));
    rr = client.stores().create(rr, "adding test remote", RemoteRepository.class);
    Group g = new Group(groupId, rr.getKey());
    g = client.stores().create(g, "Adding test group", Group.class);
    final ByteArrayOutputStream baos = new ByteArrayOutputStream();
    final InputStream in = client.module(IndyFoloContentClientModule.class).get(trackingId, group, groupId, path);
    IOUtils.copy(in, baos);
    in.close();
    final byte[] bytes = baos.toByteArray();
    final String md5 = md5Hex(bytes);
    final String sha256 = sha256Hex(bytes);
    assertThat(md5, equalTo(DigestUtils.md5Hex(bytes)));
    assertThat(sha256, equalTo(DigestUtils.sha256Hex(bytes)));
    assertThat(client.module(IndyFoloAdminClientModule.class).sealTrackingRecord(trackingId), equalTo(true));
    final TrackedContentDTO report = client.module(IndyFoloAdminClientModule.class).getTrackingReport(trackingId);
    assertThat(report, notNullValue());
    final Set<TrackedContentEntryDTO> downloads = report.getDownloads();
    assertThat(downloads, notNullValue());
    assertThat(downloads.size(), equalTo(1));
    final TrackedContentEntryDTO entry = downloads.iterator().next();
    System.out.println(entry);
    assertThat(entry, notNullValue());
    assertThat(entry.getStoreKey(), equalTo(new StoreKey(remote, repoId)));
    assertThat(entry.getPath(), equalTo(path));
    assertThat(entry.getLocalUrl(), equalTo(client.content().contentUrl(remote, repoId, path)));
    assertThat(entry.getOriginUrl(), equalTo(server.formatUrl(repoId, path)));
    assertThat(entry.getMd5(), equalTo(md5));
    assertThat(entry.getSha256(), equalTo(sha256));
}
Also used : Group(org.commonjava.indy.model.core.Group) ByteArrayInputStream(java.io.ByteArrayInputStream) InputStream(java.io.InputStream) IndyFoloContentClientModule(org.commonjava.indy.folo.client.IndyFoloContentClientModule) RemoteRepository(org.commonjava.indy.model.core.RemoteRepository) ByteArrayOutputStream(java.io.ByteArrayOutputStream) StoreKey(org.commonjava.indy.model.core.StoreKey) TrackedContentDTO(org.commonjava.indy.folo.dto.TrackedContentDTO) IndyFoloAdminClientModule(org.commonjava.indy.folo.client.IndyFoloAdminClientModule) ByteArrayInputStream(java.io.ByteArrayInputStream) TrackedContentEntryDTO(org.commonjava.indy.folo.dto.TrackedContentEntryDTO) Test(org.junit.Test)

Example 7 with TrackedContentEntryDTO

use of org.commonjava.indy.folo.dto.TrackedContentEntryDTO in project indy by Commonjava.

the class AbstractCacheReportTest method doRealTest.

protected void doRealTest() throws Exception {
    final String trackingId = newName();
    final String path = "org/commonjava/commonjava/2/commonjava-2.pom";
    final InputStream result = client.module(IndyFoloContentClientModule.class).get(trackingId, remote, CENTRAL, path);
    assertThat(result, notNullValue());
    result.close();
    assertThat(client.module(IndyFoloAdminClientModule.class).initReport(trackingId), equalTo(true));
    assertThat(client.module(IndyFoloAdminClientModule.class).sealTrackingRecord(trackingId), equalTo(true));
    final TrackedContentDTO report = client.module(IndyFoloAdminClientModule.class).getTrackingReport(trackingId);
    assertThat(report, notNullValue());
    final TrackedContentEntryDTO entry = report.getDownloads().iterator().next();
    doDeletion(entry.getStoreKey(), path);
    final String filePath = String.format("%s/var/lib/indy/storage/%s-%s/%s", fixture.getBootOptions().getIndyHome(), remote.name(), CENTRAL, path);
    final File pomFile = new File(filePath);
    assertThat("File should be deleted", pomFile.exists(), equalTo(false));
    final TrackedContentDTO reportAgain = client.module(IndyFoloAdminClientModule.class).getTrackingReport(trackingId);
    assertThat(reportAgain, equalTo(report));
    final TrackedContentEntryDTO entryAgain = report.getDownloads().iterator().next();
    assertThat(entryAgain, equalTo(entry));
    assertThat(entryAgain.getSha1(), equalTo(entry.getSha1()));
    assertThat(entryAgain.getSha256(), equalTo(entry.getSha256()));
    assertThat(entryAgain.getMd5(), equalTo(entry.getMd5()));
}
Also used : IndyFoloAdminClientModule(org.commonjava.indy.folo.client.IndyFoloAdminClientModule) InputStream(java.io.InputStream) TrackedContentEntryDTO(org.commonjava.indy.folo.dto.TrackedContentEntryDTO) IndyFoloContentClientModule(org.commonjava.indy.folo.client.IndyFoloContentClientModule) File(java.io.File) TrackedContentDTO(org.commonjava.indy.folo.dto.TrackedContentDTO)

Example 8 with TrackedContentEntryDTO

use of org.commonjava.indy.folo.dto.TrackedContentEntryDTO in project indy by Commonjava.

the class RetrievedPomInAlwaysOnTrackingReportTest method run.

@Test
public void run() throws Exception {
    final String testRepo = "test";
    final PomRef pom = loadPom("simple.pom", Collections.<String, String>emptyMap());
    final String url = server.formatUrl(testRepo, pom.path);
    server.expect(url, 200, pom.pom);
    final HttpGet get = new HttpGet(url);
    final CloseableHttpClient client = proxiedHttp();
    CloseableHttpResponse response = null;
    InputStream stream = null;
    try {
        response = client.execute(get, proxyContext(USER, PASS));
        assertThat(response.getStatusLine().getStatusCode(), equalTo(200));
        stream = response.getEntity().getContent();
        final String resultingPom = IOUtils.toString(stream);
        assertThat(resultingPom, notNullValue());
        assertThat(resultingPom, equalTo(pom.pom));
    } finally {
        IOUtils.closeQuietly(stream);
        HttpResources.cleanupResources(get, response, client);
    }
    assertThat(this.client.module(IndyFoloAdminClientModule.class).sealTrackingRecord(USER), equalTo(true));
    final TrackedContentDTO content = this.client.module(IndyFoloAdminClientModule.class).getRawTrackingContent(USER);
    assertThat(content, notNullValue());
    final Set<TrackedContentEntryDTO> downloads = content.getDownloads();
    assertThat(downloads, notNullValue());
    assertThat(downloads.size(), equalTo(1));
    final TrackedContentEntryDTO entry = downloads.iterator().next();
    assertThat(entry, notNullValue());
    final String downloadPath = entry.getPath();
    assertThat(downloadPath, notNullValue());
    assertThat(downloadPath, equalTo("/test/" + pom.path));
//TODO: As new api format for "GET /folo/admin/track/record", these tests are deperacated, will keep for a while and remove later
//        final String repoName = "httprox_127-0-0-1";
//        final TrackedContentRecord record = this.client.module( IndyFoloAdminClientModule.class )
//                                                       .getRawTrackingRecord( USER );
//        final Map<StoreKey, AffectedStoreRecord> affectedStores = record.getAffectedStores();
//        assertThat( affectedStores, notNullValue() );
//        assertThat( affectedStores.size(), equalTo( 1 ) );
//        final AffectedStoreRecord storeRecord = affectedStores.get( new StoreKey( StoreType.remote, repoName ) );
//        assertThat( storeRecord, notNullValue() );
//
//        final Set<String> downloads = storeRecord.getDownloadedPaths();
//        assertThat( downloads, notNullValue() );
//        assertThat( downloads.size(), equalTo( 1 ) );
//        assertThat( downloads.iterator()
//                             .next(), equalTo( "/test/" + pom.path ) );
}
Also used : CloseableHttpClient(org.apache.http.impl.client.CloseableHttpClient) IndyFoloAdminClientModule(org.commonjava.indy.folo.client.IndyFoloAdminClientModule) InputStream(java.io.InputStream) TrackedContentEntryDTO(org.commonjava.indy.folo.dto.TrackedContentEntryDTO) HttpGet(org.apache.http.client.methods.HttpGet) CloseableHttpResponse(org.apache.http.client.methods.CloseableHttpResponse) TrackedContentDTO(org.commonjava.indy.folo.dto.TrackedContentDTO) Test(org.junit.Test)

Example 9 with TrackedContentEntryDTO

use of org.commonjava.indy.folo.dto.TrackedContentEntryDTO in project indy by Commonjava.

the class StoreOneTrackedAndVerifyUrlInReportTest method storeOneFileAndVerifyItInParentDirectoryListing.

@Test
public void storeOneFileAndVerifyItInParentDirectoryListing() throws Exception {
    final byte[] data = "this is a test".getBytes();
    final ByteArrayInputStream stream = new ByteArrayInputStream(data);
    final String root = "/path/to/";
    final String path = root + "foo.txt";
    final String trackingId = "tracker";
    content.store(trackingId, hosted, STORE, path, stream);
    assertThat(client.module(IndyFoloAdminClientModule.class).sealTrackingRecord(trackingId), equalTo(true));
    final TrackedContentDTO report = admin.getTrackingReport(trackingId);
    final Set<TrackedContentEntryDTO> uploads = report.getUploads();
    for (final TrackedContentEntryDTO upload : uploads) {
        final String uploadPath = upload.getPath();
        final String localUrl = client.content().contentUrl(hosted, STORE, uploadPath);
        assertThat("Incorrect local URL for upload: '" + uploadPath + "'", upload.getLocalUrl(), equalTo(localUrl));
    }
}
Also used : ByteArrayInputStream(java.io.ByteArrayInputStream) TrackedContentEntryDTO(org.commonjava.indy.folo.dto.TrackedContentEntryDTO) TrackedContentDTO(org.commonjava.indy.folo.dto.TrackedContentDTO) Test(org.junit.Test)

Example 10 with TrackedContentEntryDTO

use of org.commonjava.indy.folo.dto.TrackedContentEntryDTO in project indy by Commonjava.

the class PullReportWithoutContentAccess404Test method run.

@Test
public void run() throws Exception {
    final String trackingId = newName();
    boolean success = client.module(IndyFoloAdminClientModule.class).sealTrackingRecord(trackingId);
    assertThat(success, equalTo(true));
    final TrackedContentDTO report = client.module(IndyFoloAdminClientModule.class).getTrackingReport(trackingId);
    assertThat(report, notNullValue());
    Set<TrackedContentEntryDTO> downloads = report.getDownloads();
    assertThat(downloads == null || downloads.isEmpty(), equalTo(true));
    Set<TrackedContentEntryDTO> uploads = report.getUploads();
    assertThat(uploads == null || uploads.isEmpty(), equalTo(true));
}
Also used : IndyFoloAdminClientModule(org.commonjava.indy.folo.client.IndyFoloAdminClientModule) TrackedContentEntryDTO(org.commonjava.indy.folo.dto.TrackedContentEntryDTO) TrackedContentDTO(org.commonjava.indy.folo.dto.TrackedContentDTO) Test(org.junit.Test)

Aggregations

TrackedContentEntryDTO (org.commonjava.indy.folo.dto.TrackedContentEntryDTO)19 TrackedContentDTO (org.commonjava.indy.folo.dto.TrackedContentDTO)18 IndyFoloAdminClientModule (org.commonjava.indy.folo.client.IndyFoloAdminClientModule)16 Test (org.junit.Test)14 InputStream (java.io.InputStream)13 IndyFoloContentClientModule (org.commonjava.indy.folo.client.IndyFoloContentClientModule)11 ByteArrayInputStream (java.io.ByteArrayInputStream)10 StoreKey (org.commonjava.indy.model.core.StoreKey)9 ByteArrayOutputStream (java.io.ByteArrayOutputStream)6 RemoteRepository (org.commonjava.indy.model.core.RemoteRepository)6 BytemanTest (org.commonjava.indy.ftest.core.category.BytemanTest)3 BMRules (org.jboss.byteman.contrib.bmunit.BMRules)3 CloseableHttpResponse (org.apache.http.client.methods.CloseableHttpResponse)2 HttpGet (org.apache.http.client.methods.HttpGet)2 CloseableHttpClient (org.apache.http.impl.client.CloseableHttpClient)2 File (java.io.File)1 MalformedURLException (java.net.MalformedURLException)1 TreeSet (java.util.TreeSet)1 TrackedContentEntry (org.commonjava.indy.folo.model.TrackedContentEntry)1 Group (org.commonjava.indy.model.core.Group)1