trait RdfParsingTrait in Drupal 10
Same name and namespace in other branches
- 8 core/modules/rdf/tests/src/Traits/RdfParsingTrait.php \Drupal\Tests\rdf\Traits\RdfParsingTrait
- 9 core/modules/rdf/tests/src/Traits/RdfParsingTrait.php \Drupal\Tests\rdf\Traits\RdfParsingTrait
Defines a trait for parsing RDF properties from HTML.
Hierarchy
- trait \Drupal\Tests\rdf\Traits\RdfParsingTrait
9 files declare their use of RdfParsingTrait
- CommentAttributesTest.php in core/
modules/ rdf/ tests/ src/ Functional/ CommentAttributesTest.php - EntityReferenceFieldAttributesTest.php in core/
modules/ rdf/ tests/ src/ Functional/ EntityReferenceFieldAttributesTest.php - FieldRdfaTestBase.php in core/
modules/ rdf/ tests/ src/ Kernel/ Field/ FieldRdfaTestBase.php - FileFieldAttributesTest.php in core/
modules/ rdf/ tests/ src/ Functional/ FileFieldAttributesTest.php - ImageFieldAttributesTest.php in core/
modules/ rdf/ tests/ src/ Functional/ ImageFieldAttributesTest.php
File
- core/
modules/ rdf/ tests/ src/ Traits/ RdfParsingTrait.php, line 12
Namespace
Drupal\Tests\rdf\TraitsView source
trait RdfParsingTrait {
/**
* Checks if a html document contains a resource with a given property value.
*
* @param string $html
* The HTML to parse.
* @param string $base_uri
* The base URI for the html being parsed.
* @param string $resource
* The URI of the resource which should have the given property.
* @param string $property
* The property being tested.
* @param array $value
* The expected value. This should include the following keys:
* - type: one of literal, uri and bnode
* - value: the expected value
* - datatype: the expected datatype in URI format - e.g.
* - http://www.w3.org/2001/XMLSchema#integer
* - http://www.w3.org/2001/XMLSchema#dateTime
* - lang: language code of the property.
*
* @return bool
* TRUE if the property exists with the given value.
*
* @throws \EasyRdf\Exception
*/
protected function hasRdfProperty($html, $base_uri, $resource, $property, array $value) {
$parser = new Rdfa();
$graph = new Graph();
$parser
->parse($graph, $html, 'rdfa', $base_uri);
return $graph
->hasProperty($resource, $property, $value);
}
/**
* Checks if a html document contains a resource with a given property value.
*
* @param string $html
* The HTML to parse.
* @param string $base_uri
* The base URI for the html being parsed.
* @param string $resource
* The URI of the resource which should have the given property.
* @param string $parent_property
* The parent property being tested.
* @param string $child_property
* The child property being tested.
* @param array $value
* The expected value. This should include the following keys:
* - type: one of literal, uri and bnode
* - value: the expected value
* - datatype: the expected datatype in URI format - e.g.
* - http://www.w3.org/2001/XMLSchema#integer
* - http://www.w3.org/2001/XMLSchema#dateTime
* - lang: language code of the property.
*
* @return bool
* TRUE if the property exists with the given value.
*
* @throws \EasyRdf\Exception
*/
protected function hasRdfChildProperty($html, $base_uri, $resource, $parent_property, string $child_property, array $value) {
$parser = new Rdfa();
$graph = new Graph();
$parser
->parse($graph, $html, 'rdfa', $base_uri);
$node = $graph
->get($resource, $parent_property);
return $graph
->hasProperty($node, $child_property, $value);
}
/**
* Counts the number of resources of the provided type.
*
* @param \Drupal\Core\Url $url
* URL of the document.
* @param string $base_uri
* The base URI for the html being parsed.
* @param string $type
* Type of resource to count.
*
* @return int
* The number of resources of the provided type.
*
* @throws \EasyRdf\Exception
*/
protected function getElementByRdfTypeCount(Url $url, $base_uri, $type) {
$parser = new Rdfa();
$graph = new Graph();
$parser
->parse($graph, $this
->drupalGet($url), 'rdfa', $base_uri);
return count($graph
->allOfType($type));
}
/**
* Gets type of RDF Element.
*
* @param \Drupal\Core\Url $url
* URL of the document.
* @param string $base_uri
* The base URI for the html being parsed.
* @param string $resource_uri
* The URI of the resource from where to get element.
*
* @return string|null
* The type of resource or NULL if the resource has no type.
*
* @throws \EasyRdf\Exception
*/
protected function getElementRdfType(Url $url, $base_uri, $resource_uri) {
$parser = new Rdfa();
$graph = new Graph();
$parser
->parse($graph, $this
->drupalGet($url), 'rdfa', $base_uri);
return $graph
->type($resource_uri);
}
/**
* Checks if RDF Node property is blank.
*
* @param string $html
* The HTML to parse.
* @param string $base_uri
* The base URI for the html being parsed.
* @param string $resource_uri
* The URI of the resource which should have the given property.
* @param string $property
* The property being tested.
*
* @return bool
* TRUE if the given property is blank.
*
* @throws \EasyRdf\Exception
*/
protected function rdfElementIsBlankNode($html, $base_uri, $resource_uri, $property) {
$parser = new Rdfa();
$graph = new Graph();
$parser
->parse($graph, $html, 'rdfa', $base_uri);
return $graph
->get($resource_uri, $property)
->isBnode();
}
}