created on Thu Aug 12 17:59:05 UTC 2021 by root

1. Summary

Total Runs Success Rate Total time Failures Errors Skipped

1

100.0%

1.733 seconds

0

0

0

2. Features

2.1. Event List: Default with ICS Feed Enabled PASS

Result: PASS Time: 0.609 seconds

  • Given: >the page hierarchy is created as "Components" > "Lists" > "Event List"

  • And >I am in the component showcase page

  • And >the component is on the showcase page

1
def selector = "#eventlist5"
  • When I download the feed file

1
2
def downloadSHA1 = downloadContent("/content/aemdesign-showcase/au/en/component/lists/event-list/jcr:content/article/par/contentblock5/par/eventlist.test.ics")
def feedContent = IOUtils.toString(new InputStreamReader(downloadSHA1))
  • Then The page should have begin calendar tag

1
assert feedContent.contains("BEGIN:VCALENDAR")
  • And The page should have list name tag

1
assert feedContent.contains("X-WR-CALNAME:Event List")