// Store it
assertTrue(client.storeObject(containerName, randomData, "application/octet-stream", filename, new HashMap<String,String>()));
// Make sure it's there
List<FilesObject> objects = client.listObjects(containerName);
// See that the CDN URL works
FilesObject obj = objects.get(0);
assertEquals(cdnUrl + "/" + filename, obj.getCDNURL());