summaryrefslogtreecommitdiff
path: root/vendor/leafo/lessphp/tests/ErrorHandlingTest.php
diff options
context:
space:
mode:
authorPierre Schmitz <pierre@archlinux.de>2015-06-04 07:31:04 +0200
committerPierre Schmitz <pierre@archlinux.de>2015-06-04 07:58:39 +0200
commitf6d65e533c62f6deb21342d4901ece24497b433e (patch)
treef28adf0362d14bcd448f7b65a7aaf38650f923aa /vendor/leafo/lessphp/tests/ErrorHandlingTest.php
parentc27b2e832fe25651ef2410fae85b41072aae7519 (diff)
Update to MediaWiki 1.25.1
Diffstat (limited to 'vendor/leafo/lessphp/tests/ErrorHandlingTest.php')
-rw-r--r--vendor/leafo/lessphp/tests/ErrorHandlingTest.php81
1 files changed, 81 insertions, 0 deletions
diff --git a/vendor/leafo/lessphp/tests/ErrorHandlingTest.php b/vendor/leafo/lessphp/tests/ErrorHandlingTest.php
new file mode 100644
index 00000000..de02f065
--- /dev/null
+++ b/vendor/leafo/lessphp/tests/ErrorHandlingTest.php
@@ -0,0 +1,81 @@
+<?php
+require_once __DIR__ . "/../lessc.inc.php";
+
+class ErrorHandlingTest extends PHPUnit_Framework_TestCase {
+ public function setUp() {
+ $this->less = new lessc();
+ }
+
+ public function compile() {
+ $source = join("\n", func_get_args());
+ return $this->less->compile($source);
+ }
+
+ /**
+ * @expectedException Exception
+ * @expectedExceptionMessage .parametric-mixin is undefined
+ */
+ public function testRequiredParametersMissing() {
+ $this->compile(
+ '.parametric-mixin (@a, @b) { a: @a; b: @b; }',
+ '.selector { .parametric-mixin(12px); }'
+ );
+ }
+
+ /**
+ * @expectedException Exception
+ * @expectedExceptionMessage .parametric-mixin is undefined
+ */
+ public function testTooManyParameters() {
+ $this->compile(
+ '.parametric-mixin (@a, @b) { a: @a; b: @b; }',
+ '.selector { .parametric-mixin(12px, 13px, 14px); }'
+ );
+ }
+
+ /**
+ * @expectedException Exception
+ * @expectedExceptionMessage unrecognised input
+ */
+ public function testRequiredArgumentsMissing() {
+ $this->compile('.selector { rule: e(); }');
+ }
+
+ /**
+ * @expectedException Exception
+ * @expectedExceptionMessage variable @missing is undefined
+ */
+ public function testVariableMissing() {
+ $this->compile('.selector { rule: @missing; }');
+ }
+
+ /**
+ * @expectedException Exception
+ * @expectedExceptionMessage .missing-mixin is undefined
+ */
+ public function testMixinMissing() {
+ $this->compile('.selector { .missing-mixin; }');
+ }
+
+ /**
+ * @expectedException Exception
+ * @expectedExceptionMessage .flipped is undefined
+ */
+ public function testGuardUnmatchedValue() {
+ $this->compile(
+ '.flipped(@x) when (@x =< 10) { rule: value; }',
+ '.selector { .flipped(12); }'
+ );
+ }
+
+ /**
+ * @expectedException Exception
+ * @expectedExceptionMessage .colors-only is undefined
+ */
+ public function testGuardUnmatchedType() {
+ $this->compile(
+ '.colors-only(@x) when (iscolor(@x)) { rule: value; }',
+ '.selector { .colors-only("string value"); }'
+ );
+ }
+}