Search moodle.org's
Developer Documentation

See Release Notes
Long Term Support Release

  • Bug fixes for general core bugs in 3.9.x will end* 10 May 2021 (12 months).
  • Bug fixes for security issues in 3.9.x will end* 8 May 2023 (36 months).
  • PHP version: minimum PHP 7.2.0 Note: minimum PHP version has increased since Moodle 3.8. PHP 7.3.x and 7.4.x are supported too.

Differences Between: [Versions 39 and 310]

(no description)

File Size: 173 lines (8 kb)
Included or required:0 times
Referenced: 0 times
Includes or requires: 0 files

Defines 1 class

core_output_mustache_helper_collection_testcase:: (3 methods):
  get_strip_blacklisted_helpers_testcases()
  test_strip_blacklisted_helpers()
  test_blacklisted_helpers_disabled_during_execution()


Class: core_output_mustache_helper_collection_testcase  - X-Ref

Unit tests for the mustache_helper_collection class.

get_strip_blacklisted_helpers_testcases()   X-Ref
Test cases to confirm that blacklisted helpers are stripped from the source
text by the helper before being passed to other another helper. This prevents
nested calls to helpers.


test_strip_blacklisted_helpers($blacklist, $input, $expected)   X-Ref
Test that the mustache_helper_collection class correctly strips

param: string[] $blacklist The list of helpers to strip
param: string $input The input string for the helper
param: string $expected The expected output of the string after blacklist strip

test_blacklisted_helpers_disabled_during_execution()   X-Ref
Test that the blacklisted helpers are disabled during the execution of other
helpers.

Any non-blacklisted helper should still be available to call during the
execution of a helper.