use of org.olat.fileresource.types.BlogFileResource in project openolat by klemens.
the class FeedFileStorgeTest method getOrCreateFeedItemsContainer_get.
@Test
public void getOrCreateFeedItemsContainer_get() {
FeedFileResource ores = new BlogFileResource();
sut.getOrCreateFeedItemsContainer(ores);
VFSContainer feedItemsContainer = sut.getOrCreateFeedItemsContainer(ores);
assertThat(feedItemsContainer).isNotNull();
fileResourceManager.deleteFileResource(ores);
}
use of org.olat.fileresource.types.BlogFileResource in project OpenOLAT by OpenOLAT.
the class BlogHandler method importResource.
@Override
public RepositoryEntry importResource(Identity initialAuthor, String initialAuthorAlt, String displayname, String description, boolean withReferences, Locale locale, File file, String filename) {
OLATResource resource = OLATResourceManager.getInstance().createAndPersistOLATResourceInstance(new BlogFileResource());
File fResourceFileroot = FileResourceManager.getInstance().getFileResourceRootImpl(resource).getBasefile();
File blogRoot = new File(fResourceFileroot, FeedManager.getInstance().getFeedKind(resource));
FileResource.copyResource(file, filename, blogRoot);
FeedManager.getInstance().importFeedFromXML(resource, true);
RepositoryEntry re = CoreSpringFactory.getImpl(RepositoryService.class).create(initialAuthor, null, "", displayname, description, resource, RepositoryEntry.ACC_OWNERS);
DBFactory.getInstance().commit();
return re;
}
use of org.olat.fileresource.types.BlogFileResource in project OpenOLAT by OpenOLAT.
the class FeedFileStorgeTest method getOrCreateFeedContainer_create.
@Test
public void getOrCreateFeedContainer_create() {
FeedFileResource ores = new BlogFileResource();
VFSContainer feedContainer = sut.getOrCreateFeedContainer(ores);
assertThat(feedContainer).isNotNull();
fileResourceManager.deleteFileResource(ores);
}
use of org.olat.fileresource.types.BlogFileResource in project OpenOLAT by OpenOLAT.
the class FeedFileStorgeTest method loadFeedFromXML_shortening_values.
@Test
public void loadFeedFromXML_shortening_values() {
StringBuffer sb = new StringBuffer(5000);
for (int i = 0; i < 5000; i++) {
sb.append("A");
}
String stringWith5000Chars = sb.toString();
BlogFileResource resource = new BlogFileResource();
Feed feed = new FeedImpl(resource);
feed.setAuthor(stringWith5000Chars);
feed.setDescription(stringWith5000Chars);
feed.setTitle(stringWith5000Chars);
feed.setExternalFeedUrl(stringWith5000Chars);
feed.setExternalImageURL(stringWith5000Chars);
sut.saveFeedAsXML(feed);
Feed reloaded = sut.loadFeedFromXML(resource);
assertThat(reloaded).isNotNull();
assertThat(reloaded.getAuthor()).hasSize(255);
assertThat(reloaded.getTitle()).hasSize(1024);
assertThat(reloaded.getDescription()).hasSize(4000);
assertThat(reloaded.getExternalFeedUrl()).isNull();
assertThat(reloaded.getExternalImageURL()).isNull();
assertThat(reloaded.getImageName()).isNull();
fileResourceManager.deleteFileResource(resource);
}
use of org.olat.fileresource.types.BlogFileResource in project OpenOLAT by OpenOLAT.
the class FeedFileStorgeTest method loadItemsFromXML_shortening.
@Test
public void loadItemsFromXML_shortening() {
StringBuffer sb = new StringBuffer(5000);
for (int i = 0; i < 5000; i++) {
sb.append("A");
}
String stringWith5000Chars = sb.toString();
BlogFileResource resource = new BlogFileResource();
Feed feed = new FeedImpl(resource);
Item item = new ItemImpl(feed);
String guid1 = "guid 1";
item.setGuid(guid1);
item.setAuthor(stringWith5000Chars);
item.setExternalLink(stringWith5000Chars);
item.setTitle(stringWith5000Chars);
sut.saveItemAsXML(item);
List<Item> items = sut.loadItemsFromXML(feed);
Item reloadedItem = items.get(0);
assertThat(reloadedItem.getAuthor()).hasSize(255);
assertThat(reloadedItem.getExternalLink()).isNull();
assertThat(reloadedItem.getTitle()).hasSize(1024);
fileResourceManager.deleteFileResource(resource);
}
Aggregations