Skip to content
Snippets Groups Projects
Commit 1646e013 authored by Igor Biki's avatar Igor Biki Committed by Kevin Paxman
Browse files

ISTWCMS-4818: Adding tests for ofis module.

parent 5053b624
No related branches found
No related tags found
2 merge requests!433ISTWCMS-6296 Create test for all event dates test cases,!145ISTWCMS-4818: Adding ofis module to the profile, and adding test function to functional tests.
......@@ -2420,19 +2420,45 @@ class UwWcmsBasicTest extends BrowserTestBase {
*
* Testing:
* - has module been enabled by default.
* - check config page, default api endopoint, and disabled profiles.
* - check ofis profile (without contact), expect 404.
* - create contact (unpublished), check ofis again, expect 404.
* - publish contact, check ofis again, expect profile display.
* - update contact so its watiam is missing, check ofis, expect 404.
*
* Note:
* Service test should be in kernel tests. And using actual live ofis
* profile may not be good, profile may be disabled/deleted and would cause
* tests to fail. So, mocking service response may be needed.
* - admin role checks:
* - check config page, default api endopoint, and disabled profiles.
* - site owner checks:
* - login as site owner, and check if you have access to config page.
* - confirm api_endpoint field is not on config form.
*/
public function ofisTest() {
// Check if module is enabled with profile install.
$module_enabled = \Drupal::moduleHandler()->moduleExists('uw_ws_ofis');
$this->assertTrue($module_enabled, 'Module uw_ws_ofis not enabled.');
// Login as administrator and check ofis config form.
$this->drupalLogin($this->drupalUsers['administrator']);
$this->drupalGet('admin/config/uw_ws_ofis');
$this->assertSession()->statusCodeEquals(200);
// Validate settings form fields for administrator.
$this->assertSession()->pageTextContains('Clear OFIS caches');
$this->assertSession()->fieldExists('API endpoint');
$this->assertSession()->fieldExists('Enable OFIS profiles');
$this->drupalLogout();
// Login as site owner.
$this->drupalLogin($this->drupalUsers['uw_role_site_owner']);
// Get to config form using dashboard.
$this->drupalGet('dashboard/my_dashboard');
$this->assertSession()->linkExists('OFIS settings');
$this->clickLink('OFIS settings');
$this->assertSession()->statusCodeEquals(200);
// Make sure enable/disable profiles is available.
$this->assertSession()->fieldExists('Enable OFIS profiles');
// API endpoint and cache clear should not be visible to site owner.
$this->assertSession()->fieldNotExists('API endpoint');
$this->assertSession()->pageTextNotContains('Clear OFIS caches');
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment