aboutsummaryrefslogtreecommitdiffstats
path: root/lib/htmlpurifier/tests/HTMLPurifier/ContextTest.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-05-12 17:57:41 -0700
committerfriendica <info@friendica.com>2012-07-18 20:40:31 +1000
commit7a40f4354b32809af3d0cfd6e3af0eda02ab0e0a (patch)
treea9c3d91209cff770bb4b613b1b95e61a7bbc5a2b /lib/htmlpurifier/tests/HTMLPurifier/ContextTest.php
parentcd727cb26b78a1dade09d510b071446898477356 (diff)
downloadvolse-hubzilla-7a40f4354b32809af3d0cfd6e3af0eda02ab0e0a.tar.gz
volse-hubzilla-7a40f4354b32809af3d0cfd6e3af0eda02ab0e0a.tar.bz2
volse-hubzilla-7a40f4354b32809af3d0cfd6e3af0eda02ab0e0a.zip
some important stuff we'll need
Diffstat (limited to 'lib/htmlpurifier/tests/HTMLPurifier/ContextTest.php')
-rw-r--r--lib/htmlpurifier/tests/HTMLPurifier/ContextTest.php84
1 files changed, 84 insertions, 0 deletions
diff --git a/lib/htmlpurifier/tests/HTMLPurifier/ContextTest.php b/lib/htmlpurifier/tests/HTMLPurifier/ContextTest.php
new file mode 100644
index 000000000..c5cef1651
--- /dev/null
+++ b/lib/htmlpurifier/tests/HTMLPurifier/ContextTest.php
@@ -0,0 +1,84 @@
+<?php
+
+// mocks
+class HTMLPurifier_ContextTest extends HTMLPurifier_Harness
+{
+
+ protected $context;
+
+ public function setUp() {
+ $this->context = new HTMLPurifier_Context();
+ }
+
+ function testStandardUsage() {
+
+ generate_mock_once('HTMLPurifier_IDAccumulator');
+
+ $this->assertFalse($this->context->exists('IDAccumulator'));
+
+ $accumulator = new HTMLPurifier_IDAccumulatorMock();
+ $this->context->register('IDAccumulator', $accumulator);
+ $this->assertTrue($this->context->exists('IDAccumulator'));
+
+ $accumulator_2 =& $this->context->get('IDAccumulator');
+ $this->assertReference($accumulator, $accumulator_2);
+
+ $this->context->destroy('IDAccumulator');
+ $this->assertFalse($this->context->exists('IDAccumulator'));
+
+ $this->expectError('Attempted to retrieve non-existent variable IDAccumulator');
+ $accumulator_3 =& $this->context->get('IDAccumulator');
+ $this->assertNull($accumulator_3);
+
+ $this->expectError('Attempted to destroy non-existent variable IDAccumulator');
+ $this->context->destroy('IDAccumulator');
+
+ }
+
+ function testReRegister() {
+
+ $var = true;
+ $this->context->register('OnceOnly', $var);
+
+ $this->expectError('Name OnceOnly produces collision, cannot re-register');
+ $this->context->register('OnceOnly', $var);
+
+ // destroy it, now registration is okay
+ $this->context->destroy('OnceOnly');
+ $this->context->register('OnceOnly', $var);
+
+ }
+
+ function test_loadArray() {
+
+ // references can be *really* wonky!
+
+ $context_manual = new HTMLPurifier_Context();
+ $context_load = new HTMLPurifier_Context();
+
+ $var1 = 1;
+ $var2 = 2;
+
+ $context_manual->register('var1', $var1);
+ $context_manual->register('var2', $var2);
+
+ // you MUST set up the references when constructing the array,
+ // otherwise the registered version will be a copy
+ $array = array(
+ 'var1' => &$var1,
+ 'var2' => &$var2
+ );
+
+ $context_load->loadArray($array);
+ $this->assertIdentical($context_manual, $context_load);
+
+ $var1 = 10;
+ $var2 = 20;
+
+ $this->assertIdentical($context_manual, $context_load);
+
+ }
+
+}
+
+// vim: et sw=4 sts=4