Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/UserCountry/tests/UI/UserCountry_spec.js')
-rw-r--r--plugins/UserCountry/tests/UI/UserCountry_spec.js35
1 files changed, 35 insertions, 0 deletions
diff --git a/plugins/UserCountry/tests/UI/UserCountry_spec.js b/plugins/UserCountry/tests/UI/UserCountry_spec.js
new file mode 100644
index 0000000000..140b152ddf
--- /dev/null
+++ b/plugins/UserCountry/tests/UI/UserCountry_spec.js
@@ -0,0 +1,35 @@
+/*!
+ * Matomo - free/libre analytics platform
+ *
+ * Screenshot integration tests.
+ *
+ * @link https://matomo.org
+ * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
+ */
+
+describe("UserCountry", function () {
+
+ afterEach(function () {
+ delete testEnvironment.pluginsToUnload;
+ testEnvironment.save();
+ });
+
+ it('should show geolocation admin without additional providers', async function () {
+ testEnvironment.pluginsToUnload = ['GeoIp2'];
+ testEnvironment.save();
+
+ await page.goto("?module=UserCountry&action=adminIndex");
+
+ expect(await page.screenshotSelector('#content')).to.matchImage('admin_no_providers');
+ });
+
+ it('should show geolocation admin with GeoIP2 providers', async function () {
+ testEnvironment.pluginsToLoad = ['GeoIp2'];
+ testEnvironment.save();
+
+ await page.goto("?module=UserCountry&action=adminIndex");
+
+ expect(await page.screenshotSelector('#content')).to.matchImage('admin_geoip2');
+ });
+
+});