Actions

Difference between revisions of "Testing/Manual testing/Dashboard"

From Mahara Wiki

< Testing
(Created page with "=Mahara 18.04 user manual section 3. Dashboard= To test this page it is assumed that a '''fresh install of Mahara''' has taken place and user sets "Password" and "email" for...")
 
Line 98: Line 98:
 
<div class="toccolours mw-collapsible mw-expanded" style="background:linen">
 
<div class="toccolours mw-collapsible mw-expanded" style="background:linen">
 
====Things to test for Manually====
 
====Things to test for Manually====
<span style="color:red">TODO: </span>
+
 
 
<div class="mw-collapsible-content">
 
<div class="mw-collapsible-content">
This is where test criteria go
+
<span style="color:red">TODO: </span>This is not set up yet 
 
</div>
 
</div>
 
</div>
 
</div>
  
 
<div class="toccolours mw-collapsible mw-collapsed" style="background:ivory">
 
<div class="toccolours mw-collapsible mw-collapsed" style="background:ivory">
 +
 
====Automated Test script scenarios====
 
====Automated Test script scenarios====
 
<span style="color:red">TODO: </span>
 
<span style="color:red">TODO: </span>

Revision as of 09:36, 4 April 2018

Mahara 18.04 user manual section 3. Dashboard

To test this page it is assumed that a fresh install of Mahara has taken place and user sets "Password" and "email" for the initial login. It is also assumed that there is a fresh database with no data. For more information of the dashboard please see Mahara 18.04 user manual section 3. Dashboard. This page will have screenshots of pages using the "Raw" theme. Other themes will need to be tested but will have to be set by the Site admin in the Site settings panel found here Admin menu > Configure site > Site options > Site settings

Mahara 18.04 user manual section 3.1 Login

Assumptions: To test this page it is assumed that a fresh install of Mahara has taken place and user sets "Password" and "email" for the initial login. It is also assumed that there is a fresh database with no data

Things to test for Manually

  1. Visual check
    1. Login page uses correct colour "Raw" TODO: We need to find a way to toggle this easily
    2. header elements displayed
      1. Mahara logo displayed -top left of page
      2. Search bar displayed
      3. navigation menus displayed - User menu, Administration menu and Main menu
    3. Static Welcome Page title h1 displayed
    4. Text "Edit this text via "Administration menu" → "Configure site" → "Static pages"." is displayed with link to "Static pages" page
    5. Clicking "Static pages" link - takes user to a Log in to Mahara page with only the Login Block displayed
    6. Static "Quick links" displayed but link functionality suppressed until user logs in
    7. buttons displayed "Login"
    8. fields displayed "Username" & "Password"
    9. Links displayed "Register" & "Lost username / password"
    10. footer is displayed and links functioning correctly
  2. User invalid login- user should see an error message and will not be logged in
  3. User valid login- user should be logged in and and redirected to the Dashboard page
  4. "Registration" link is displayed and functioning
  5. "Lost username / password" link is displayed and functioning

Automated Test script scenarios

Scenario: User should see correct page styling
Given user is logged in
When is on the "Mahara homepage"
Then user should see "Raw" theme colours
Scenario: User invalid login
Given user is not logged in
And is on the Mahara homepage
When user enters valid username
And user enters invalid password
Then user should see "You have not provided the correct credentials to log in. Please check your username and password are correct." error message
And user should see "There was an error with submitting this form. Please check the marked fields and try again."
And user will not be logged in
Scenario: "Registration" links to "Registration" page
Given user is not logged in
And is on the "Mahara homepage"
When user clicks "Registration" link
Then user should be on the "Registration" page
Scenario: "Lost username / password" links to "Forgotten your username or password?" page
Given user is not logged in
And is on the "Mahara homepage"
When user clicks the "Lost username / password" link
Then user should be on the "Forgotten your username or password?" page
Scenario: User valid login
Given user is not logged in
And is on the "Mahara homepage"
When user enters valid username
And user enters valid password
Then user should be on the "Dashboard" page
And user will be logged in

Mahara 18.04 user manual section 3.2 Login with strict privacy

Assumptions: To test this page it is assumed that a fresh install of Mahara has taken place and user sets "Password" and "email" for the initial login. It is also assumed that there is a fresh database with no data

Things to test for Manually

TODO: This is not set up yet

Automated Test script scenarios

TODO:

This is where Automated test scenarios go


Mahara 18.04 user manual section 3.3 Overview page

Assumptions: To test this page it is assumed that a fresh install of Mahara has taken place and user sets "Password" and "email" for the initial login. It is also assumed that there is a fresh database with no data

Things to test for Manually

  1. Visual check
    1. Login page uses correct colour "Raw"
    2. header elements displayed
    3. Welcome Page title h1 displayed
    4. Text "Edit this text via "Administration menu" → "Configure site" → "Static pages"." is displayed with link to "Static pages" page
    5. "Quick links" block is displayed with correct links to respective pages
    6. user info block displayed
    7. online users block displayed
    8. Latest changes I can view block displayed
    9. My portfolios block displayed
    10. Inbox block displayed
    11. Topics I am following block displayed
    12. Watched pages block displayed
    13. footer is displayed and links functioning correctly
  2. Change page "Layout" functionality works
  3. Change page "Skin" functionality works
  4. Page edit functionality works Create edit and delete page blocks
  5. Page links working Tester can use Chrome extension Link Checker or dev tools to determine "200 code return"

Automated Test script scenarios

Scenario: User should see correct page styling
Given user is logged in
Then user should be on "Dashboard" page
And user should see "Raw" theme colours
Then automation script take screenshot
And save the file in "Local folder"
Scenario: User click "More" link to see more messages
Bagkground:

TODO: Create step definition to populate DB with 60 messages

Given the following "60""Messages" exist:
| | |
Given user is logged in
When user is on the "Dashboard"
Then user should see "Inbox" block
When I follow "More"
And I select 10 from Results per page:
Then I should be on "Notifications" page
And I should see 10 messages displayed
And I should see pagination
Scenario: User changes Page layout from 2 column to 3 column layout
Given Some preconditions
When user performs some action
Then Something should happen
Scenario: User changes the page skin from default "Raw" pre-made site skin
Given Some preconditions
When user performs some action
Then Something should happen
Scenario: User adds block to page, edits new block and deletes block from page
Given Some preconditions
When user performs some action
Then Something should happen
Scenario: User wants to do something
Given Some preconditions
When user performs some action
Then Something should happen

Mahara 18.04 user manual section 3.4. Navigation

Assumptions: To test this page it is assumed that a fresh install of Mahara has taken place and user sets "Password" and "email" for the initial login. It is also assumed that there is a fresh database with no data

Things to test for Manually

TODO:

This is where test criteria go

Automated Test script scenarios

TODO:

This is where Automated test scenarios go


Mahara 18.04 user manual section 3.5. Quick links

Assumptions: To test this page it is assumed that a fresh install of Mahara has taken place and user sets "Password" and "email" for the initial login. It is also assumed that there is a fresh database with no data

Things to test for Manually

TODO:

This is where test criteria go

Automated Test script scenarios

TODO:

This is where Automated test scenarios go

Mahara 18.04 user manual section 3.6. User-specific information

Assumptions: To test this page it is assumed that a fresh install of Mahara has taken place and user sets "Password" and "email" for the initial login. It is also assumed that there is a fresh database with no data

Things to test for Manually

TODO:

This is where test criteria go

Automated Test script scenarios

TODO:

This is where Automated test scenarios go

Mahara 18.04 user manual section 3.7. Footer

Assumptions: To test this page it is assumed that a fresh install of Mahara has taken place and user sets "Password" and "email" for the initial login. It is also assumed that there is a fresh database with no data

Things to test for Manually

TODO:

This is where test criteria go

Automated Test script scenarios

TODO:

This is where Automated test scenarios go