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/CustomDimensions/tests/Unit/Dimension/CaseSensitiveTest.php')
m---------plugins/CustomDimensions0
-rw-r--r--plugins/CustomDimensions/tests/Unit/Dimension/CaseSensitiveTest.php58
2 files changed, 58 insertions, 0 deletions
diff --git a/plugins/CustomDimensions b/plugins/CustomDimensions
deleted file mode 160000
-Subproject 318661a2fb1ef3b3e5d6d999ae8b9628cb5a113
diff --git a/plugins/CustomDimensions/tests/Unit/Dimension/CaseSensitiveTest.php b/plugins/CustomDimensions/tests/Unit/Dimension/CaseSensitiveTest.php
new file mode 100644
index 0000000000..918e837900
--- /dev/null
+++ b/plugins/CustomDimensions/tests/Unit/Dimension/CaseSensitiveTest.php
@@ -0,0 +1,58 @@
+<?php
+/**
+ * Matomo - free/libre analytics platform
+ *
+ * @link https://matomo.org
+ * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
+ */
+
+namespace Piwik\Plugins\CustomDimensions\tests\Unit\Dimension;
+use Piwik\Plugins\CustomDimensions\Dimension\CaseSensitive;
+
+/**
+ * @group CustomDimensions
+ * @group CaseSensitiveTest
+ * @group CaseSensitive
+ * @group Plugins
+ */
+class CaseSensitiveTest extends \PHPUnit\Framework\TestCase
+{
+ public function test_check_shouldFailWhenActiveIsEmpty()
+ {
+ $this->expectException(\Exception::class);
+ $this->expectExceptionMessage("Invalid value '' for 'caseSensitive' specified. Allowed values: '0' or '1'");
+ $this->buildCaseSensitive('')->check();
+ }
+
+ public function test_check_shouldFailWhenActiveIsNotValid()
+ {
+ $this->expectException(\Exception::class);
+ $this->expectExceptionMessage("Invalid value 'anyValUe' for 'caseSensitive' specified. Allowed values: '0' or '1'");
+ $this->buildCaseSensitive('anyValUe')->check();
+ }
+
+ public function test_check_shouldFailWhenActiveIsNumericButNot0or1()
+ {
+ $this->expectException(\Exception::class);
+ $this->expectExceptionMessage("Invalid value '2'");
+ $this->buildCaseSensitive('2')->check();
+ }
+
+ public function test_check_shouldNotFailWhenActiveIsValid()
+ {
+ $this->buildCaseSensitive(true)->check();
+ $this->buildCaseSensitive(false)->check();
+ $this->buildCaseSensitive(0)->check();
+ $this->buildCaseSensitive(1)->check();
+ $this->buildCaseSensitive('0')->check();
+ $this->buildCaseSensitive('1')->check();
+
+ self::assertTrue(true);
+ }
+
+ private function buildCaseSensitive($caseSensitive)
+ {
+ return new CaseSensitive($caseSensitive);
+ }
+
+}