summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/PropertyLabelCanonicalMatchTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/PropertyLabelCanonicalMatchTest.php')
-rw-r--r--www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/PropertyLabelCanonicalMatchTest.php165
1 files changed, 165 insertions, 0 deletions
diff --git a/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/PropertyLabelCanonicalMatchTest.php b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/PropertyLabelCanonicalMatchTest.php
new file mode 100644
index 00000000..fd310800
--- /dev/null
+++ b/www/wiki/extensions/SemanticMediaWiki/tests/phpunit/Integration/PropertyLabelCanonicalMatchTest.php
@@ -0,0 +1,165 @@
+<?php
+
+namespace SMW\Tests\Integration;
+
+use SMW\DIProperty;
+use SMW\PropertyRegistry;
+
+/**
+ * @group semantic-mediawiki
+ *
+ * @license GNU GPL v2+
+ * @since 2.5
+ *
+ * @author mwjames
+ */
+class PropertyLabelCanonicalMatchTest extends \PHPUnit_Framework_TestCase {
+
+ /**
+ * @dataProvider canonicalLabelProvider
+ */
+ public function testFindPropertyIdByLabel( $label, $expectedKey, $expectedLabel ) {
+
+ list( $labelMatch, $property ) = $this->findPropertyIdByLabel( $label );
+
+ $this->assertEquals(
+ $labelMatch,
+ $expectedLabel
+ );
+
+ $this->assertEquals(
+ $expectedKey,
+ $property->getKey()
+ );
+ }
+
+ /**
+ * @dataProvider canonicalLabelProvider
+ */
+ public function testNewFromUserLabel( $label, $expectedKey, $expectedLabel ) {
+
+ list( $labelMatch, $property ) = $this->newFromUserLabel( $label );
+
+ $this->assertEquals(
+ $labelMatch,
+ $expectedLabel
+ );
+
+ $this->assertEquals(
+ $expectedKey,
+ $property->getKey()
+ );
+ }
+
+ /**
+ * @dataProvider canonicalLabelWithLanguageProvider
+ */
+ public function testNewFromUserLabelWithLanguage( $label, $languageCode, $expectedKey, $expectedLabel ) {
+
+ list( $labelMatch, $property ) = $this->newFromUserLabel( $label, $languageCode );
+
+ $this->assertEquals(
+ $labelMatch,
+ $expectedLabel
+ );
+
+ $this->assertEquals(
+ $expectedKey,
+ $property->getKey()
+ );
+ }
+
+ private function findPropertyIdByLabel( $label ) {
+
+ $property = new DIProperty(
+ PropertyRegistry::getInstance()->findPropertyIdByLabel( $label )
+ );
+
+ $canonicalLabel = $property->getCanonicalLabel();
+
+ // #1966 and #1968
+ // In case something goes wrong, a recursive loop will kill PHP
+ // and we know we messed up
+ if ( $canonicalLabel !== '' && $label !== $canonicalLabel ) {
+ $this->findPropertyIdByLabel(
+ $property->getCanonicalDiWikiPage()->getTitle()->getText()
+ );
+ }
+
+ return [ $label, $property ];
+ }
+
+ private function newFromUserLabel( $label, $languageCode = false ) {
+
+ $property = DIProperty::newFromUserLabel( $label, false, $languageCode );
+
+ $canonicalLabel = $property->getCanonicalLabel();
+
+ // #1966 and #1968
+ // In case something goes wrong, a recursive loop will kill PHP
+ // and we know we messed up
+ if ( $canonicalLabel !== '' && $label !== $canonicalLabel ) {
+ $this->newFromUserLabel(
+ $property->getCanonicalDiWikiPage()->getTitle()->getText()
+ );
+ }
+
+ return [ $label, $property ];
+ }
+
+ public function canonicalLabelProvider() {
+
+ $provider[] = [
+ 'Number',
+ '_num',
+ 'Number',
+ ];
+
+ $provider[] = [
+ 'Float',
+ '_num',
+ 'Float'
+ ];
+
+ $provider[] = [
+ 'Telephone number',
+ '_tel',
+ 'Telephone number'
+ ];
+
+ $provider[] = [
+ 'Phone number',
+ '_tel',
+ 'Phone number'
+ ];
+
+ return $provider;
+ }
+
+ public function canonicalLabelWithLanguageProvider() {
+
+ $provider[] = [
+ 'Number',
+ 'en',
+ '_num',
+ 'Number'
+ ];
+
+ $provider[] = [
+ 'Number',
+ 'fr',
+ '_num',
+ 'Number'
+ ];
+
+ $provider[] = [
+ 'Booléen',
+ 'fr',
+ '_boo',
+ 'Booléen'
+ ];
+
+ return $provider;
+ }
+
+}