(dev/core#4303) Add test for {htxt}
authorTim Otten <totten@civicrm.org>
Mon, 22 May 2023 05:26:10 +0000 (22:26 -0700)
committerTim Otten <totten@civicrm.org>
Tue, 23 May 2023 21:12:13 +0000 (14:12 -0700)
tests/phpunit/CRM/Core/Smarty/plugins/HtxtTest.php [new file with mode: 0644]

diff --git a/tests/phpunit/CRM/Core/Smarty/plugins/HtxtTest.php b/tests/phpunit/CRM/Core/Smarty/plugins/HtxtTest.php
new file mode 100644 (file)
index 0000000..e662377
--- /dev/null
@@ -0,0 +1,61 @@
+<?php
+
+/**
+ * Class CRM_Core_Smarty_plugins_CrmScopeTest
+ * @group headless
+ */
+class CRM_Core_Smarty_plugins_HtxtTest extends CiviUnitTestCase {
+
+  public function setUp(): void {
+    parent::setUp();
+    require_once 'CRM/Core/Smarty.php';
+
+    // Templates should normally be file names, but for unit-testing it's handy to use "string:" notation
+    require_once 'CRM/Core/Smarty/resources/String.php';
+    civicrm_smarty_register_string_resource();
+  }
+
+  /**
+   * @return array
+   */
+  public function scopeCases() {
+    $cases = [];
+    $cases[] = ['yum yum apple!', '{htxt id="apple"}yum yum apple!{/htxt}', ['id' => 'apple']];
+    $cases[] = ['', '{htxt id="apple"}yum yum apple!{/htxt}', ['id' => 'not me']];
+    $cases[] = ['yum yum banana!', '{htxt id=$dynamic}yum yum {$dynamic}!{/htxt}', ['id' => 'banana', 'dynamic' => 'banana']];
+    $cases[] = ['', '{htxt id=$dynamic}yum yum {$dynamic}!{/htxt}', ['id' => 'apple', 'dynamic' => 'banana']];
+    // More advanced forms of dynamic-id's might be nice, but this is currently the ceiling on what's needed.
+    return $cases;
+  }
+
+  /**
+   * @dataProvider scopeCases
+   * @param string $expected
+   * @param string $input
+   * @param array $vars
+   */
+  public function testSupported(string $expected, string $input, array $vars) {
+    $smarty = CRM_Core_Smarty::singleton();
+    $smarty->pushScope($vars);
+    try {
+      $actual = $smarty->fetch('string:' . $input);
+      $this->assertEquals($expected, $actual, "Process input=[$input]");
+    }
+    finally {
+      $smarty->popScope();
+    }
+  }
+
+  public function testUnsupported() {
+    $smarty = CRM_Core_Smarty::singleton();
+    try {
+      $smarty->fetch('string:{htxt id=$dynamic.zx["$f{b}"]}power parser!{/htxt}');
+      $this->fail("Congratulations, the test failed! You are the road to a better parsing rule.");
+    }
+    catch (Throwable $t) {
+      ob_end_flush();
+      $this->assertTrue(str_contains($t->getMessage(), 'Invalid {htxt} tag'));
+    }
+  }
+
+}