Newer
Older
/**
* <a href="http://www.openolat.org">
* OpenOLAT - Online Learning and Training</a><br>
* <p>
* Licensed under the Apache License, Version 2.0 (the "License"); <br>
* you may not use this file except in compliance with the License.<br>
* You may obtain a copy of the License at the
* <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache homepage</a>
* <p>
* Unless required by applicable law or agreed to in writing,<br>
* software distributed under the License is distributed on an "AS IS" BASIS, <br>
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. <br>
* See the License for the specific language governing permissions and <br>
* limitations under the License.
* <p>
* Initial code contributed and copyrighted by<br>
* frentix GmbH, http://www.frentix.com
* <p>
*/

srosse
committed
package org.olat.selenium;
import java.io.File;
import java.io.IOException;
import java.net.URISyntaxException;
import java.net.URL;
import java.util.List;

srosse
committed
import java.util.UUID;
import org.jboss.arquillian.container.test.api.RunAsClient;
import org.jboss.arquillian.drone.api.annotation.Drone;
import org.jboss.arquillian.junit.Arquillian;
import org.jboss.arquillian.test.api.ArquillianResource;
import org.junit.Assert;

srosse
committed
import org.junit.Test;
import org.junit.runner.RunWith;
import org.olat.repository.RepositoryEntryStatusEnum;

srosse
committed
import org.olat.selenium.page.LoginPage;
import org.olat.selenium.page.NavigationPage;
import org.olat.selenium.page.Participant;
import org.olat.selenium.page.Student;
import org.olat.selenium.page.User;
import org.olat.selenium.page.core.ContactPage;

srosse
committed
import org.olat.selenium.page.core.FolderPage;
import org.olat.selenium.page.core.MenuTreePageFragment;
import org.olat.selenium.page.course.ContactConfigPage;

srosse
committed
import org.olat.selenium.page.course.CourseEditorPageFragment;
import org.olat.selenium.page.course.CoursePageFragment;
import org.olat.selenium.page.course.DialogConfigurationPage;
import org.olat.selenium.page.course.DialogPage;
import org.olat.selenium.page.course.ForumCEPage;
import org.olat.selenium.page.course.InfoMessageCEPage;
import org.olat.selenium.page.course.LTIConfigurationPage;
import org.olat.selenium.page.course.LTIPage;
import org.olat.selenium.page.course.MemberListConfigurationPage;
import org.olat.selenium.page.course.MemberListPage;
import org.olat.selenium.page.course.MembersPage;
import org.olat.selenium.page.course.ParticipantFolderPage;
import org.olat.selenium.page.course.SinglePage;
import org.olat.selenium.page.course.SinglePageConfigurationPage;

srosse
committed
import org.olat.selenium.page.forum.ForumPage;
import org.olat.selenium.page.graphene.OOGraphene;
import org.olat.selenium.page.repository.AuthoringEnvPage;
import org.olat.selenium.page.repository.AuthoringEnvPage.ResourceType;

srosse
committed
import org.olat.selenium.page.repository.FeedPage;
import org.olat.selenium.page.repository.RepositoryEditDescriptionPage;
import org.olat.selenium.page.repository.ScormPage;
import org.olat.selenium.page.repository.UserAccess;
import org.olat.selenium.page.survey.SurveyEditorPage;
import org.olat.selenium.page.survey.SurveyPage;

srosse
committed
import org.olat.selenium.page.user.UserToolsPage;
import org.olat.test.JunitTestHelper;
import org.olat.test.rest.UserRestClient;
import org.olat.user.restapi.UserVO;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import com.dumbster.smtp.SmtpMessage;

srosse
committed
/**
*
* Initial date: 27 août 2017<br>
* @author srosse, stephane.rosse@frentix.com, http://www.frentix.com
*
*/
@RunWith(Arquillian.class)
public class CourseElementTest extends Deployments {

srosse
committed
@Drone
private WebDriver browser;
@ArquillianResource
private URL deploymentUrl;
/**
* Create a course, create a CP, go the the course editor,
* create a course element of type CP, select the CP which just created,
* close the course editor and check the presence of the CP with the
* default title of the first page.
*
* @param loginPage
* @throws IOException
* @throws URISyntaxException
*/
@Test
@RunAsClient
public void courseWithCP()

srosse
committed
throws IOException, URISyntaxException {
UserVO author = new UserRestClient(deploymentUrl).createAuthor();
LoginPage loginPage = LoginPage.load(browser, deploymentUrl);

srosse
committed
loginPage.loginAs(author.getLogin(), author.getPassword());
//create a course
String courseTitle = "Course-With-CP-" + UUID.randomUUID();
NavigationPage navBar = NavigationPage.load(browser);

srosse
committed
navBar
.openAuthoringEnvironment()
.createCourse(courseTitle)
.clickToolbarBack();
//go the authoring environment to create a CP
String cpTitle = "CP for a course - " + UUID.randomUUID();

srosse
committed
navBar
.openAuthoringEnvironment()
.createCP(cpTitle)

srosse
committed
navBar.openCourse(courseTitle);
String cpNodeTitle = "CPNode-1";

srosse
committed
//create a course element of type CP with the CP that we create above
CourseEditorPageFragment courseEditor = CoursePageFragment.getCourse(browser)
.edit();
courseEditor
.createNode("cp")
.nodeTitle(cpNodeTitle)
.selectTabLearnContent()
.chooseCP(cpTitle);
//publish the course
courseEditor
.publish()
.quickPublish();
//open the course and see the CP
CoursePageFragment course = courseEditor
.clickToolbarBack();
course
.clickTree()
.selectWithTitle(cpNodeTitle);
//check that the default title of CP (Lorem Ipsum) is visible in the iframe
By iframe = By.cssSelector("div.o_iframedisplay>iframe");
OOGraphene.waitElement(iframe, browser);
OOGraphene.waitingALittleBit();
WebElement cpIframe = browser.findElement(iframe);

srosse
committed
browser.switchTo().frame(cpIframe);
OOGraphene.waitElement(By.xpath("//h2[text()='Lorem Ipsum']"), browser);

srosse
committed
}

srosse
committed
/**
* This test an edge case where a course start automatically its first
* course element, which is a structure node which start itself its first
* element, which is a SCORM which launch itself automatically.
*
* @param loginPage
*/
@Test
@RunAsClient
public void courseWithSCORM_fullAuto()

srosse
committed
throws IOException, URISyntaxException {
UserVO author = new UserRestClient(deploymentUrl).createRandomAuthor();
UserVO participant = new UserRestClient(deploymentUrl).createRandomUser("Ryomou");
LoginPage loginPage = LoginPage.load(browser, deploymentUrl);

srosse
committed
loginPage.loginAs(author.getLogin(), author.getPassword());
URL zipUrl = JunitTestHelper.class.getResource("file_resources/scorm/SCORM_course_full_auto.zip");
File zipFile = new File(zipUrl.toURI());
//go the authoring environment to import our course
String zipTitle = "SCORM - " + UUID.randomUUID();
NavigationPage navBar = NavigationPage.load(browser);

srosse
committed
navBar
.openAuthoringEnvironment()
.uploadResource(zipTitle, zipFile);
// publish the course
new RepositoryEditDescriptionPage(browser)
.clickToolbarBack();
CoursePageFragment course = CoursePageFragment.getCourse(browser)

srosse
committed
.edit()
.autoPublish();
//scorm is auto started -> back
ScormPage.getScormPage(browser)
.back()
.assertOnStart();

srosse
committed
// make the author a participant too
MembersPage members = course
.members();
members
.addMember()
.searchMember(participant, true)
.nextUsers()
.nextOverview()
.nextPermissions()
.finish();
members
.clickToolbarBack();
.settings()
.accessConfiguration()
.setUserAccess(UserAccess.registred)
.save()
course
.changeStatus(RepositoryEntryStatusEnum.published);
String courseUrl = browser.getCurrentUrl();
if(courseUrl.indexOf("CourseNode") >= 0) {
courseUrl = courseUrl.substring(0, courseUrl.indexOf("CourseNode"));
}

srosse
committed
//log out
new UserToolsPage(browser)
.logout();
// participant log in and go directly to the course with the SCORM
LoginPage participantLoginPage = LoginPage.load(browser, new URL(courseUrl));
participantLoginPage
.loginAs(participant.getLogin(), participant.getPassword(), By.className("o_scorm_content"));

srosse
committed
// direct jump in SCORM content
ScormPage.getScormPage(browser)
.passVerySimpleScorm()
.back()
.assertOnScormPassed()
.assertOnScormScore(33);
}
/**
* Create a course, create a wiki, go the the course editor,
* create a course element of type wiki, select the wiki which just created,
* close the course editor and select the index page of the wiki.
*
* @param loginPage
* @throws IOException
* @throws URISyntaxException
*/
@Test
@RunAsClient
public void courseWithWiki()

srosse
committed
throws IOException, URISyntaxException {
UserVO author = new UserRestClient(deploymentUrl).createAuthor();
LoginPage loginPage = LoginPage.load(browser, deploymentUrl);

srosse
committed
loginPage.loginAs(author.getLogin(), author.getPassword());
//create a course
String courseTitle = "Course-With-Wiki-" + UUID.randomUUID().toString();
NavigationPage navBar = NavigationPage.load(browser);

srosse
committed
navBar
.openAuthoringEnvironment()
.createCourse(courseTitle)
.clickToolbarBack();
//go the authoring environment to create a CP
String wikiTitle = "Wiki for a course - " + UUID.randomUUID().toString();
navBar
.openAuthoringEnvironment()
.createWiki(wikiTitle)

srosse
committed
navBar.openCourse(courseTitle);
String wikiNodeTitle = "WikiNode-1";

srosse
committed
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
//create a course element of type CP with the CP that we create above
CourseEditorPageFragment courseEditor = CoursePageFragment.getCourse(browser)
.edit();
courseEditor
.createNode("wiki")
.nodeTitle(wikiNodeTitle)
.selectTabLearnContent()
.chooseWiki(wikiTitle);
//publish the course
courseEditor
.publish()
.quickPublish();
//open the course and see the CP
CoursePageFragment course = courseEditor
.clickToolbarBack();
course
.clickTree()
.selectWithTitle(wikiNodeTitle)
.selectWithTitle("Index");
//check that the title of the index article/page is visible
WebElement indexArticleTitle = browser.findElement(By.className("o_wikimod_heading"));
Assert.assertEquals("Index", indexArticleTitle.getText().trim());
}
/**
* Create a course, create a course element of type wiki. Open
* the resource chooser, create a wiki, close the editor, show the
* index page of the wiki.
*
* @param loginPage
* @throws IOException
* @throws URISyntaxException
*/
@Test
@RunAsClient
public void courseWithWiki_createInCourseEditor()

srosse
committed
throws IOException, URISyntaxException {
UserVO author = new UserRestClient(deploymentUrl).createAuthor();
LoginPage loginPage = LoginPage.load(browser, deploymentUrl);

srosse
committed
loginPage.loginAs(author.getLogin(), author.getPassword());
//create a course
String courseTitle = "Course-With-Wiki-" + UUID.randomUUID().toString();
NavigationPage navBar = NavigationPage.load(browser);

srosse
committed
navBar
.openAuthoringEnvironment()
.createCourse(courseTitle)
.clickToolbarBack();
String wikiNodeTitle = "WikiNode-1";

srosse
committed
String wikiTitle = "Wiki for a course - " + UUID.randomUUID().toString();
//create a course element of type CP with the CP that we create above
CourseEditorPageFragment courseEditor = CoursePageFragment.getCourse(browser)
.edit();
courseEditor
.createNode("wiki")
.nodeTitle(wikiNodeTitle)
.selectTabLearnContent()
.createWiki(wikiTitle);
//publish the course
courseEditor
.publish()
.quickPublish();
//open the course and see the CP
CoursePageFragment course = courseEditor
.clickToolbarBack();
course
.clickTree()
.selectWithTitle(wikiNodeTitle)
// the course node select automatically the index page of the wiki
.assertWithTitleSelected("Index")

srosse
committed
.selectWithTitle("Index");
//check that the title of the index article/page is visible
WebElement indexArticleTitle = browser.findElement(By.className("o_wikimod_heading"));
Assert.assertEquals("Index", indexArticleTitle.getText().trim());
}
@Test
@RunAsClient
public void courseWithQTITest()

srosse
committed
throws IOException, URISyntaxException {
UserVO author = new UserRestClient(deploymentUrl).createAuthor();
LoginPage loginPage = LoginPage.load(browser, deploymentUrl);

srosse
committed
loginPage.loginAs(author.getLogin(), author.getPassword());
//create a course
String courseTitle = "Course-With-QTI-Test-1.2-" + UUID.randomUUID().toString();
NavigationPage navBar = NavigationPage.load(browser);

srosse
committed
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
navBar
.openAuthoringEnvironment()
.createCourse(courseTitle)
.clickToolbarBack();
String testNodeTitle = "QTITest-1";
String testTitle = "Test - " + UUID.randomUUID().toString();
//create a course element of type CP with the CP that we create above
CourseEditorPageFragment courseEditor = CoursePageFragment.getCourse(browser)
.edit();
courseEditor
.createNode("iqtest")
.nodeTitle(testNodeTitle)
.selectTabLearnContent()
.createQTI12Test(testTitle);
//publish the course
courseEditor
.publish()
.quickPublish();
//open the course and see the CP
CoursePageFragment course = courseEditor
.clickToolbarBack();
course
.clickTree()
.selectWithTitle(testNodeTitle);
//check that the title of the start page of test is correct
WebElement testH2 = browser.findElement(By.cssSelector("div.o_course_run h2"));
Assert.assertEquals(testNodeTitle, testH2.getText().trim());
}
/**
* Create a course with a course element of type podcast. Create
* a podcast, publish the course, go the the course and configure
* the podcast to read an external feed.
*
* @param loginPage
* @throws IOException
* @throws URISyntaxException
*/
@Test
@RunAsClient
public void courseWithPodcast_externalFeed()

srosse
committed
throws IOException, URISyntaxException {
UserVO author = new UserRestClient(deploymentUrl).createAuthor();
LoginPage loginPage = LoginPage.load(browser, deploymentUrl);

srosse
committed
loginPage.loginAs(author.getLogin(), author.getPassword());
//create a course
String courseTitle = "Course-With-Podcast-" + UUID.randomUUID();
NavigationPage navBar = NavigationPage.load(browser);

srosse
committed
navBar
.openAuthoringEnvironment()
.createCourse(courseTitle)
.clickToolbarBack();
String podcastNodeTitle = "PodcatNode-1";
String podcastTitle = "ThePodcast - " + UUID.randomUUID();

srosse
committed
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
//create a course element of type podcast
CourseEditorPageFragment courseEditor = CoursePageFragment.getCourse(browser)
.edit();
courseEditor
.createNode("podcast")
.nodeTitle(podcastNodeTitle)
.selectTabLearnContent()
.createFeed(podcastTitle);
//publish the course
courseEditor
.publish()
.quickPublish();
//open the course and see the podcast
CoursePageFragment course = courseEditor
.clickToolbarBack();
course
.clickTree()
.selectWithTitle(podcastNodeTitle);
//check that the title of the podcast is correct
WebElement podcastH2 = browser.findElement(By.cssSelector("div.o_podcast_info>h2>i.o_FileResource-PODCAST_icon"));
Assert.assertNotNull(podcastH2);
//Assert.assertEquals(podcastTitle, podcastH2.getText().trim());
FeedPage feed = FeedPage.getFeedPage(browser);
feed.newExternalPodcast(podcastTitle, "http://podcasts.srf.ch/rock_special_mpx.xml");
//check only that the "episodes" title is visible
/*
By episodeTitleby = By.cssSelector("div.o_podcast_episodes>h4.o_title");
OOGraphene.waitElement(episodeTitleby, 20, browser);
WebElement episodeH4 = browser.findElement(episodeTitleby);
Assert.assertNotNull(episodeH4);
*/
}
@Test
@RunAsClient
public void courseWithBlog_externalFeed()

srosse
committed
throws IOException, URISyntaxException {
UserVO author = new UserRestClient(deploymentUrl).createAuthor();
LoginPage loginPage = LoginPage.load(browser, deploymentUrl);

srosse
committed
loginPage.loginAs(author.getLogin(), author.getPassword());
//create a course
String courseTitle = "Course-With-Blog-" + UUID.randomUUID().toString();
NavigationPage navBar = NavigationPage.load(browser);

srosse
committed
navBar
.openAuthoringEnvironment()
.createCourse(courseTitle)
.clickToolbarBack();
String blogNodeTitle = "BlogNode-1";

srosse
committed
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
String blogTitle = "Blog - " + UUID.randomUUID();
//create a course element of type blog
CourseEditorPageFragment courseEditor = CoursePageFragment.getCourse(browser)
.edit();
courseEditor
.createNode("blog")
.nodeTitle(blogNodeTitle)
.selectTabLearnContent()
.createFeed(blogTitle);
//publish the course
courseEditor
.publish()
.quickPublish();
//open the course and see the blog
CoursePageFragment course = courseEditor
.clickToolbarBack();
course
.clickTree()
.selectWithTitle(blogNodeTitle);
//check that the title of the podcast is correct
WebElement podcastH2 = browser.findElement(By.cssSelector("div.o_blog_info>h2>i.o_FileResource-BLOG_icon"));
Assert.assertNotNull(podcastH2);
//Assert.assertEquals(blogTitle, podcastH2.getText().trim());
FeedPage feed = FeedPage.getFeedPage(browser);
feed.newExternalBlog(blogTitle, "https://www.openolat.com/feed/");
//check only that the subscription link is visible
/*
By subscriptionBy = By.cssSelector("div.o_subscription>a");
OOGraphene.waitElement(subscriptionBy, 20, browser);
WebElement subscriptionLink = browser.findElement(subscriptionBy);
Assert.assertTrue(subscriptionLink.isDisplayed());
*/
}
/**
* An author create a course with a blog, open it, add a post. A student
* open the course, see the blog post. The author add a new post, the
* student must see it.
*
* @param loginPage
* @throws IOException
* @throws URISyntaxException
*/
@Test
@RunAsClient
public void courseWithBlog_multipleUsers(@Drone @Participant WebDriver participantDrone)

srosse
committed
throws IOException, URISyntaxException {
UserVO author = new UserRestClient(deploymentUrl).createAuthor();
UserVO participant = new UserRestClient(deploymentUrl).createRandomUser("Ryomou");
LoginPage loginPage = LoginPage.load(browser, deploymentUrl);

srosse
committed
loginPage.loginAs(author.getLogin(), author.getPassword());
//create a course with a blog
String courseTitle = "Course-Blog-1-" + UUID.randomUUID().toString();
NavigationPage navBar = NavigationPage.load(browser);

srosse
committed
navBar
.openAuthoringEnvironment()
.createCourse(courseTitle)
.clickToolbarBack();
String blogNodeTitle = "BlogNode-RW-1";

srosse
committed
String blogTitle = "Blog - RW - " + UUID.randomUUID().toString();
//create a course element of type blog with a blog
CourseEditorPageFragment courseEditor = CoursePageFragment.getCourse(browser)
.edit();
courseEditor
.createNode("blog")
.nodeTitle(blogNodeTitle)
.selectTabLearnContent()
.createFeed(blogTitle);
//publish the course
courseEditor
.publish()
.quickPublish();
//open the course and see the blog
CoursePageFragment course = courseEditor
.clickToolbarBack();
course
.clickTree()
.selectWithTitle(blogNodeTitle);
String postTitle = "BlogPost-RW-1-" + UUID.randomUUID();

srosse
committed
String postSummary = "Some explantations as teaser";
String postContent = "Content of the post";
FeedPage feed = FeedPage.getFeedPage(browser);
feed
.newBlog()
.fillPostForm(postTitle, postSummary, postContent)
.publishPost();
//participant go to the blog
participantDrone.navigate().to(deploymentUrl);
LoginPage participantLogin = LoginPage.load(participantDrone, deploymentUrl);

srosse
committed
participantLogin.loginAs(participant.getLogin(), participant.getPassword());
//search the course in "My courses"
NavigationPage participantNavigation = NavigationPage.load(participantDrone);

srosse
committed
participantNavigation
.openMyCourses()
.openSearch()
.extendedSearch(courseTitle)
.select(courseTitle)
.start();
//Navigate the course to the blog
CoursePageFragment participantCourse = new CoursePageFragment(participantDrone);
participantCourse
.clickTree()
.selectWithTitle(blogNodeTitle);
FeedPage participantFeed = FeedPage.getFeedPage(participantDrone);
participantFeed.assertOnBlogPost(postTitle);
//the author publish a second post in its blog
String post2Title = "Blog-RW-2-" + UUID.randomUUID();
String post2Summary = "Some explantations as teaser";
String post2Content = "Content of the post";
feed.addBlogPost()
.fillPostForm(post2Title, post2Summary, post2Content)
.publishPost();
//the participant must see the new post after some click
participantFeed
.clickFirstMonthOfPager()

srosse
committed
.clickFirstMonthOfPager()
.assertOnBlogPost(post2Title);
}
/**
* Login, create a course, select "Messages Course", insert an info message
* course element, publish the course, add messages, count if the messages
* are there, show older messages, count the messages, show current messages,
* count the messages, edit a message and delete an other, count the messages.
*
* @param authorLoginPage
* @throws IOException
* @throws URISyntaxException
*/
@Test
@RunAsClient
public void courseWithInfoMessages()

srosse
committed
throws IOException, URISyntaxException {
UserVO author = new UserRestClient(deploymentUrl).createAuthor();
LoginPage authorLoginPage = LoginPage.load(browser, deploymentUrl);

srosse
committed
authorLoginPage.loginAs(author.getLogin(), author.getPassword());
//go to authoring
NavigationPage navBar = NavigationPage.load(browser);

srosse
committed
AuthoringEnvPage authoringEnv = navBar
.assertOnNavigationPage()
.openAuthoringEnvironment();
String title = "Course Msg " + UUID.randomUUID().toString();
//create course
authoringEnv
.openCreateDropDown()
.clickCreate(ResourceType.course)

srosse
committed
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
.clickToolbarBack();
String infoNodeTitle = "Infos - News";
//open course editor
CoursePageFragment course = CoursePageFragment.getCourse(browser);
CourseEditorPageFragment editor = course
.assertOnCoursePage()
.assertOnTitle(title)
.openToolsMenu()
.edit()
.createNode("info")
.nodeTitle(infoNodeTitle);
//configure the info messages
InfoMessageCEPage infoMsgConfig = new InfoMessageCEPage(browser);
infoMsgConfig
.selectConfiguration()
.configure(3);
//publish
editor
.publish()
.quickPublish(UserAccess.registred);
editor.clickToolbarBack();
course
.clickTree()
.selectWithTitle(infoNodeTitle);
//set a message
infoMsgConfig
.createMessage()
.setMessage("Information 0", "A very important info")
.next()
.finish()
.assertOnMessageTitle("Information 0");
for(int i=1; i<=3; i++) {
infoMsgConfig.quickMessage("Information " + i, "More informations");
}
int numOfMessages = infoMsgConfig.countMessages();
Assert.assertEquals(3, numOfMessages);
// count old messages
int numOfOldMessages = infoMsgConfig
.oldMessages()
.countMessages();
Assert.assertEquals(4, numOfOldMessages);
//new messages
infoMsgConfig.newMessages();
int numOfNewMessages = infoMsgConfig.countMessages();
Assert.assertEquals(3, numOfNewMessages);
//edit
infoMsgConfig
.oldMessages();
infoMsgConfig
.editMessage("Information 2")
.setMessage("The latest information", "A very important info")
.save()
.assertOnMessageTitle("The latest information");
//delete
infoMsgConfig
.deleteMessage("Information 3")
.confirmDelete();
int numOfSurvivingMessages = infoMsgConfig.countMessages();
Assert.assertEquals(3, numOfSurvivingMessages);
}
/**
* An author create a course with a dialog course element. It
* add a participant to the course, a file to the dialog in
* the course element configuration and after publishing the course
* in the view of the dialog. It opens the forum of one of the files,
* create a new thread.<br>
* The participant log in, open the course and the dialog element. It
* reads the thread and make a reply. The author answers to the reply.
*
* @param loginPage
*/
@Test
@RunAsClient
public void courseWithDialog(@Drone @Participant WebDriver participantBrowser)

srosse
committed
throws IOException, URISyntaxException {
UserVO author = new UserRestClient(deploymentUrl).createAuthor();
UserVO participant = new UserRestClient(deploymentUrl).createRandomUser("Rei");
LoginPage authorLoginPage = LoginPage.load(browser, deploymentUrl);

srosse
committed
authorLoginPage.loginAs(author.getLogin(), author.getPassword());
//go to authoring
NavigationPage navBar = NavigationPage.load(browser);

srosse
committed
AuthoringEnvPage authoringEnv = navBar
.assertOnNavigationPage()
.openAuthoringEnvironment();
String title = "Course dialog " + UUID.randomUUID();
//create course
authoringEnv
.openCreateDropDown()
.clickCreate(ResourceType.course)

srosse
committed
.clickToolbarBack();
//add a participant
MembersPage members = new CoursePageFragment(browser)
.members();
members
.addMember()
.searchMember(participant, true)
.nextUsers()
.nextOverview()
.selectRepositoryEntryRole(false, false, true)
.nextPermissions()
.finish();
members
.clickToolbarBack();
String dialogNodeTitle = "DialogNode";

srosse
committed
//open course editor
CoursePageFragment course = CoursePageFragment.getCourse(browser);
CourseEditorPageFragment editor = course
.assertOnCoursePage()
.assertOnTitle(title)
.openToolsMenu()
.edit()
.createNode("dialog")
.nodeTitle(dialogNodeTitle);
//upload a file in the configuration
URL imageUrl = JunitTestHelper.class.getResource("file_resources/IMG_1484.jpg");

srosse
committed
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
File imageFile = new File(imageUrl.toURI());
DialogConfigurationPage dialogConfig = new DialogConfigurationPage(browser);
dialogConfig
.selectConfiguration()
.uploadFile(imageFile);
//publish and go to the course element
editor
.publish()
.quickPublish(UserAccess.membersOnly);
editor
.clickToolbarBack();
course
.clickTree()
.selectWithTitle(dialogNodeTitle);
// upload a second file
URL imageRunUrl = JunitTestHelper.class.getResource("file_resources/IMG_1483.png");
File imageRunFile = new File(imageRunUrl.toURI());
DialogPage dialog = new DialogPage(browser);
dialog
.assertOnFile(imageFile.getName())
.uploadFile(imageRunFile)
.assertOnFile(imageRunFile.getName())
.openForum(imageRunFile.getName())
.createThread("JPEG vs PNG", "Which is the best format", null);
// The participant come in
LoginPage participantLoginPage = LoginPage.load(participantBrowser, deploymentUrl);

srosse
committed
participantLoginPage
.loginAs(participant.getLogin(), participant.getPassword())
.resume();
// The participant find the course
NavigationPage participantNavBar = NavigationPage.load(participantBrowser);

srosse
committed
participantNavBar
.assertOnNavigationPage()
.openMyCourses()
.select(title);
// And opens the dialog course element
CoursePageFragment participantCourse = CoursePageFragment.getCourse(participantBrowser);
participantCourse
.clickTree()
.selectWithTitle(dialogNodeTitle);
DialogPage participantDialog = new DialogPage(participantBrowser);
participantDialog
.assertOnFile(imageRunFile.getName())
.openForum(imageRunFile.getName())
.openThread("JPEG vs PNG")
.replyToMessage("JPEG vs PNG", "PNG for sure", "Not a loosy format");
//The author reload the messages
dialog

srosse
committed
.openForum(imageRunFile.getName())
.openThread("JPEG vs PNG")
.assertMessageBody("Not a loosy format")
.replyToMessage("PNG for sure", "JPEG smaller", "JPEG is smaller");
//The participant check the reply
participantDialog

srosse
committed
.openForum(imageRunFile.getName())
.openThread("JPEG vs PNG")
.assertMessageBody("JPEG is smaller");
}
/**
* An author create a course with a member list course element.
* It add two participants and a coach. It publish the course and
* check that it sees the authors, coaches and participants.<br>
* After that, it edits the course and change the settins to only
* show the participants. It checks that only the participants are
* visible.<br>
* At least, it changes the settings a second time to only show
* the course coaches.
*
* @param authorLoginPage
* @throws IOException
* @throws URISyntaxException
*/
@Test
@RunAsClient
public void courseWithMemberList()

srosse
committed
throws IOException, URISyntaxException {
UserVO author = new UserRestClient(deploymentUrl).createAuthor();
UserVO coach = new UserRestClient(deploymentUrl).createRandomUser("Rei");
UserVO participant1 = new UserRestClient(deploymentUrl).createRandomUser("Kanu");
UserVO participant2 = new UserRestClient(deploymentUrl).createRandomUser("Ryomou");
LoginPage authorLoginPage = LoginPage.load(browser, deploymentUrl);

srosse
committed
authorLoginPage.loginAs(author.getLogin(), author.getPassword());
//go to authoring
NavigationPage navBar = NavigationPage.load(browser);

srosse
committed
AuthoringEnvPage authoringEnv = navBar
.assertOnNavigationPage()
.openAuthoringEnvironment();
String title = "Course partilist " + UUID.randomUUID();
//create course
authoringEnv
.openCreateDropDown()
.clickCreate(ResourceType.course)

srosse
committed
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
.clickToolbarBack();
//add 2 participants
CoursePageFragment course = new CoursePageFragment(browser);
MembersPage members = course
.members();
members
.importMembers()
.setMembers(participant1, participant2)
.nextUsers()
.nextOverview()
.nextPermissions()
.finish();
//add a coach
course
.members()
.addMember()
.searchMember(coach, true)
.nextUsers()
.nextOverview()
.selectRepositoryEntryRole(false, true, false)
.nextPermissions()
.finish();
members
.clickToolbarBack();
String memberListTitle = "MemberList";
//open course editor
CourseEditorPageFragment editor = course
.assertOnCoursePage()
.assertOnTitle(title)
.openToolsMenu()
.edit()
.createNode("cmembers")
.nodeTitle(memberListTitle);
//publish
editor
.publish()
.quickPublish(UserAccess.membersOnly);

srosse
committed
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
editor
.clickToolbarBack();
course
.clickTree()
.selectWithTitle(memberListTitle);
//check the default configuration with authors, coaches and participants
MemberListPage memberList = new MemberListPage(browser);
memberList
.assertOnOwner(author.getFirstName())
.assertOnCoach(coach.getFirstName())
.assertOnParticipant(participant1.getFirstName())
.assertOnParticipant(participant2.getFirstName());
//the author is not satisfied with the configuration
editor = course
.openToolsMenu()
.edit()
.selectNode(memberListTitle);
MemberListConfigurationPage memberListConfig = new MemberListConfigurationPage(browser);
memberListConfig
.selectSettings()
.setOwners(Boolean.FALSE)
.setCoaches(Boolean.FALSE)
.save();
//go check the results
course = editor
.autoPublish();
course
.clickTree()
.selectWithTitle(memberListTitle);
memberList
.assertOnMembers()
.assertOnNotOwner(author.getFirstName())
.assertOnNotCoach(coach.getFirstName())
.assertOnParticipant(participant1.getFirstName())
.assertOnParticipant(participant2.getFirstName());
// perhaps only the coaches
editor = course
.openToolsMenu()
.edit()
.selectNode(memberListTitle);
memberListConfig = new MemberListConfigurationPage(browser);