use of org.commonjava.maven.galley.spi.cache.CacheProvider in project galley by Commonjava.
the class CacheProviderTCK method writeAndVerifyExistence.
@Test
public void writeAndVerifyExistence() throws Exception {
final String content = "This is a test";
final Location loc = new SimpleLocation("http://foo.com");
final String fname = "/path/to/my/file.txt";
final CacheProvider provider = getCacheProvider();
final OutputStream out = provider.openOutputStream(new ConcreteResource(loc, fname));
out.write(content.getBytes("UTF-8"));
out.close();
assertThat(provider.exists(new ConcreteResource(loc, fname)), equalTo(true));
}
use of org.commonjava.maven.galley.spi.cache.CacheProvider in project galley by Commonjava.
the class CacheProviderTCK method lockThenWaitForLockReturnsImmediatelyInSameThread.
@Test
public void lockThenWaitForLockReturnsImmediatelyInSameThread() throws Exception {
final Location loc = new SimpleLocation("http://foo.com");
final String path = "my/path.txt";
final ConcreteResource res = new ConcreteResource(loc, path);
final CacheProvider cache = getCacheProvider();
cache.lockWrite(res);
cache.waitForWriteUnlock(res);
assertThat(cache.isWriteLocked(res), equalTo(false));
}
use of org.commonjava.maven.galley.spi.cache.CacheProvider in project galley by Commonjava.
the class CacheProviderTCK method writeAndVerifyDirectory.
@Test
public void writeAndVerifyDirectory() throws Exception {
final String content = "This is a test";
final Location loc = new SimpleLocation("http://foo.com");
final String dir = "/path/to/my/";
final String fname = dir + "file.txt";
final CacheProvider provider = getCacheProvider();
final OutputStream out = provider.openOutputStream(new ConcreteResource(loc, fname));
out.write(content.getBytes("UTF-8"));
out.close();
assertThat(provider.isDirectory(new ConcreteResource(loc, dir)), equalTo(true));
}
use of org.commonjava.maven.galley.spi.cache.CacheProvider in project galley by Commonjava.
the class FileCacheProviderTest method testGetDetachedFile.
@Test
public void testGetDetachedFile() throws Exception {
final String content = "This is a test";
final Location loc = new SimpleLocation("http://foo.com");
final String fname = "/path/to/my/file.txt";
final ConcreteResource resource = new ConcreteResource(loc, fname);
final CacheProvider provider = getCacheProvider();
final OutputStream out = provider.openOutputStream(resource);
out.write(content.getBytes("UTF-8"));
out.close();
File file = provider.asAdminView().getDetachedFile(resource);
assertThat(provider.exists(resource), equalTo(true));
assertTrue(file.exists());
}
use of org.commonjava.maven.galley.spi.cache.CacheProvider in project galley by Commonjava.
the class CacheProviderTCK method writeAndListDirectory.
@Test
public void writeAndListDirectory() throws Exception {
final String content = "This is a test";
final Location loc = new SimpleLocation("http://foo.com");
final String dir = "/path/to/my/";
final String fname = dir + "file.txt";
final CacheProvider provider = getCacheProvider();
final OutputStream out = provider.openOutputStream(new ConcreteResource(loc, fname));
out.write(content.getBytes("UTF-8"));
out.flush();
out.close();
// NOTE: This is NOT as tightly specified as I would like.
// We keep the listing assertions loose (greater-than instead of equals,
// contains instead of exact positional assertion) because the Infinispan
// live testing has these spurious foo.txt.#0 files cropping up.
//
// I have no idea what they are, but I'm sick of fighting JBoss bugs for now.
final Set<String> listing = new HashSet<String>(Arrays.asList(provider.list(new ConcreteResource(loc, dir))));
System.out.printf("\n\nFile listing is:\n\n %s\n\n\n", join(listing, "\n "));
assertThat(listing.size() > 0, equalTo(true));
assertThat(listing.contains("file.txt"), equalTo(true));
}
Aggregations