wmde / hamcrest-html-matchers
Set of Hamcrest matchers for HTML assertions
Installs: 537 336
Dependents: 2
Suggesters: 0
Security: 0
Stars: 1
Watchers: 23
Forks: 1
Open Issues: 9
Requires
- php: >=7.2
- ext-dom: *
- ext-libxml: *
- ext-mbstring: *
- hamcrest/hamcrest-php: ^2.0.1
Requires (Dev)
- v1.0.0
- dev-master / 0.1.x-dev
- v0.1.1
- v0.1.0
- dev-dependabot/github_actions/actions/checkout-3.1.0
- dev-dependabot/composer/mediawiki/mediawiki-codesniffer-39.0.0
- dev-dependabot/composer/php-parallel-lint/php-parallel-lint-1.3.2
- dev-dependabot/composer/php-parallel-lint/php-console-highlighter-1.0.0
- dev-dependabot/composer/mediawiki/mediawiki-phan-config-0.11.1
- dev-denormalization
- dev-contains-string-ignoring-white-space
This package is auto-updated.
Last update: 2024-10-06 03:14:26 UTC
README
Usage examples
Hamcrest allows you to create pretty complicated and flexible assertions. Just remember:
"You can" does not mean "you should".
The following example shows how we can ensure that there is an HTML form and password entered in it is not weak:
$html = '<div> <form> <input name="password" value="strong password"/> </form> </div>'; assertThat($html, is(htmlPiece( havingChild( both(withTagName('form')) ->andAlso( havingDirectChild( allOf( withTagName('input'), withAttribute('name')->havingValue('password'), withAttribute('value')->havingValue(not('weak password')))))))));
Usage limitations:
- Each HTML assertion starts with
htmlPiece()
call (is()
can be used to improve readability) - One of
havingRootElement()
,havingDirectChild()
orhavingChild()
needed to be passed as an argument tohtmlPiece()
Documentation
Information about general Hamcrest usage can be found at Hamcrest GitHub repository.
Available Matchers
-
htmlPiece()
- checks that string is a valid HTML, parses it and passes control to given matcher if one presentassertThat('<p></p>', is(htmlPiece())); // Just checking that string is a valid piece of HTML
-
havingRootElement
- checks given constraint against root element of HTML. NOTE: Can be passed only tohtmlPiece()
assertThat('<p></p>', htmlPiece(havingRootElement(withTagName('p'))));
-
havingDirectChild
- checks given constraint against direct childrenassertThat('<p><b></b></p>', htmlPiece(havingRootElement(havingDirectChild(withTagName('b')))));
-
havingChild
- checks given constraint against all childrenassertThat('<p><b></b></p>', htmlPiece(havingChild(withTagName('b'))));
-
withTagName
- checks given constraint against tag nameassertThat('<p><b></b></p>', htmlPiece(havingChild(withTagName( either(equalTo('i'))->orElse(equalTo('b')) ))));
-
withAttribute
- checks given constraint against elements attributes comparing names and valuesassertThat('<p><input required></p>', htmlPiece(havingChild(withAttribute('required'))));
assertThat('<p><input data-value="some data"></p>', htmlPiece(havingChild( withAttribute(startsWith('data-'))->havingValue('some data'))));
-
withClass
- checks given constraint against element's class listassertThat('<p class="class1 class2 class3"></p>', htmlPiece(havingChild( withClass('class2'))));
-
havingTextContents
- checks given constraint against elements text contentsassertThat('<div><p>this is Some Text</p></div>', htmlPiece(havingChild( havingTextContents(containsString('some text')->ignoringCase()))));
-
tagMatchingOutline
- tolerantly checks that tag matches given outline (outline - tag representation in HTML format)\That means:
- Element's tag name is equal to outline's tag name
- Element has all the attributes that outline has with the same values. If element has more attributes than outline it still matches.
- NOTE: Attribute
class
is treated in a different manner (see further). - NOTE: If attribute outlined is boolean, then its value in element won't be checked, just presence.
- NOTE: Attribute
- Element has all html classes that outline has.
This will pass:
assertThat('<form><input id="id-pass" name="password" class="pretty green" required="required"></form>', htmlPiece(havingChild( tagMatchingOutline('<input name="password" class="green" required>') )));