use of org.olat.modules.webFeed.model.FeedImpl in project openolat by klemens.
the class FeedFileStorgeTest method deleteItemXML_not_existing.
@Test
public void deleteItemXML_not_existing() {
BlogFileResource resource = new BlogFileResource();
Feed feed = new FeedImpl(resource);
Item item = new ItemImpl(feed);
item.setGuid("123");
item.setAuthor("autor");
sut.deleteItemXML(item);
// check if there is no file in the item container
assertThat(sut.getOrCreateItemContainer(item).getItems().size()).isEqualTo(0);
fileResourceManager.deleteFileResource(resource);
}
use of org.olat.modules.webFeed.model.FeedImpl in project openolat by klemens.
the class FeedFileStorgeTest method loadItemFromXML.
@Test
public void loadItemFromXML() {
BlogFileResource resource = new BlogFileResource();
Feed feed = new FeedImpl(resource);
Item item = new ItemImpl(feed);
String guid = "guid öüä";
item.setGuid(guid);
String autor = "autor";
item.setAuthor(autor);
sut.saveItemAsXML(item);
VFSContainer itemContainer = sut.getOrCreateItemContainer(item);
Item reloaded = sut.loadItemFromXML(itemContainer);
assertThat(reloaded).isNotNull();
assertThat(reloaded.getAuthor()).isEqualTo(autor);
fileResourceManager.deleteFileResource(resource);
}
use of org.olat.modules.webFeed.model.FeedImpl in project openolat by klemens.
the class FeedFileStorgeTest method deleteFeedXML.
@Test
public void deleteFeedXML() {
BlogFileResource resource = new BlogFileResource();
Feed feed = new FeedImpl(resource);
feed.setAuthor("initialAuthor");
sut.saveFeedAsXML(feed);
sut.deleteFeedXML(feed);
// check if there is no file in the feed container
assertThat(sut.getOrCreateFeedContainer(feed).getItems().size()).isEqualTo(0);
fileResourceManager.deleteFileResource(resource);
}
use of org.olat.modules.webFeed.model.FeedImpl in project openolat by klemens.
the class FeedFileStorgeTest method getOrCreateItemContainer_guid_create.
@Test
public void getOrCreateItemContainer_guid_create() {
BlogFileResource resource = new BlogFileResource();
Feed feed = new FeedImpl(resource);
String guid = "guid 123";
VFSContainer itemContainer = sut.getOrCreateItemContainer(feed, guid);
assertThat(itemContainer).isNotNull();
fileResourceManager.deleteFileResource(resource);
}
use of org.olat.modules.webFeed.model.FeedImpl in project openolat by klemens.
the class FeedManagerImplTest method enrichFeedFromRepositoryEntryShouldTransferAtributes.
@Test
public void enrichFeedFromRepositoryEntryShouldTransferAtributes() {
Feed feed = new FeedImpl(resourceDummy);
RepositoryEntry entry = new RepositoryEntry();
String title = "Title";
entry.setDisplayname(title);
String description = "Description";
entry.setDescription(description);
String authors = "Author";
entry.setAuthors(authors);
Feed enrichedFeed = sut.enrichFeedByRepositoryEntry(feed, entry);
assertThat(enrichedFeed.getTitle()).isEqualTo(title);
assertThat(enrichedFeed.getDescription()).isEqualTo(description);
assertThat(enrichedFeed.getAuthor()).isEqualTo(authors);
}
Aggregations