MediaWiki  1.33.0
SparqlClientTest.php
Go to the documentation of this file.
1 <?php
2 namespace MediaWiki\Sparql;
3 
4 use Http;
7 use PHPUnit4And6Compat;
8 
12 class SparqlClientTest extends \PHPUnit\Framework\TestCase {
13 
14  use PHPUnit4And6Compat;
15 
16  private function getRequestFactory( $request ) {
17  $requestFactory = $this->getMock( HttpRequestFactory::class );
18  $requestFactory->method( 'create' )->willReturn( $request );
19  return $requestFactory;
20  }
21 
22  private function getRequestMock( $content ) {
23  $request = $this->getMockBuilder( MWHttpRequest::class )->disableOriginalConstructor()->getMock();
24  $request->method( 'execute' )->willReturn( \Status::newGood( 200 ) );
25  $request->method( 'getContent' )->willReturn( $content );
26  return $request;
27  }
28 
29  public function testQuery() {
30  $json = <<<JSON
31 {
32  "head" : {
33  "vars" : [ "x", "y", "z" ]
34  },
35  "results" : {
36  "bindings" : [ {
37  "x" : {
38  "type" : "uri",
39  "value" : "http://wikiba.se/ontology#Dump"
40  },
41  "y" : {
42  "type" : "uri",
43  "value" : "http://creativecommons.org/ns#license"
44  },
45  "z" : {
46  "type" : "uri",
47  "value" : "http://creativecommons.org/publicdomain/zero/1.0/"
48  }
49  }, {
50  "x" : {
51  "type" : "uri",
52  "value" : "http://wikiba.se/ontology#Dump"
53  },
54  "z" : {
55  "type" : "literal",
56  "value" : "0.1.0"
57  }
58  } ]
59  }
60 }
61 JSON;
62 
63  $request = $this->getRequestMock( $json );
64  $client = new SparqlClient( 'http://acme.test/', $this->getRequestFactory( $request ) );
65 
66  // values only
67  $result = $client->query( "TEST SPARQL" );
68  $this->assertCount( 2, $result );
69  $this->assertEquals( 'http://wikiba.se/ontology#Dump', $result[0]['x'] );
70  $this->assertEquals( 'http://creativecommons.org/ns#license', $result[0]['y'] );
71  $this->assertEquals( '0.1.0', $result[1]['z'] );
72  $this->assertNull( $result[1]['y'] );
73  // raw data format
74  $result = $client->query( "TEST SPARQL 2", true );
75  $this->assertCount( 2, $result );
76  $this->assertEquals( 'uri', $result[0]['x']['type'] );
77  $this->assertEquals( 'http://wikiba.se/ontology#Dump', $result[0]['x']['value'] );
78  $this->assertEquals( 'literal', $result[1]['z']['type'] );
79  $this->assertEquals( '0.1.0', $result[1]['z']['value'] );
80  $this->assertNull( $result[1]['y'] );
81  }
82 
86  public function testBadQuery() {
87  $request = $this->getMockBuilder( MWHttpRequest::class )->disableOriginalConstructor()->getMock();
88  $client = new SparqlClient( 'http://acme.test/', $this->getRequestFactory( $request ) );
89 
90  $request->method( 'execute' )->willReturn( \Status::newFatal( "Bad query" ) );
91  $result = $client->query( "TEST SPARQL 3" );
92  }
93 
94  public function optionsProvider() {
95  return [
96  'defaults' => [
97  'TEST ั‚ะตัั‚ SPARQL 4 ',
98  null,
99  null,
100  [
101  'http://acme.test/',
102  'query=TEST+%D1%82%D0%B5%D1%81%D1%82+SPARQL+4+',
103  'format=json',
104  'maxQueryTimeMillis=30000',
105  ],
106  [
107  'method' => 'GET',
108  'userAgent' => Http::userAgent() . " SparqlClient",
109  'timeout' => 30
110  ]
111  ],
112  'big query' => [
113  str_repeat( 'ZZ', SparqlClient::MAX_GET_SIZE ),
114  null,
115  null,
116  [
117  'format=json',
118  'maxQueryTimeMillis=30000',
119  ],
120  [
121  'method' => 'POST',
122  'postData' => 'query=' . str_repeat( 'ZZ', SparqlClient::MAX_GET_SIZE ),
123  ]
124  ],
125  'timeout 1s' => [
126  'TEST SPARQL 4',
127  null,
128  1,
129  [
130  'maxQueryTimeMillis=1000',
131  ],
132  [
133  'timeout' => 1
134  ]
135  ],
136  'more options' => [
137  'TEST SPARQL 5',
138  [
139  'userAgent' => 'My Test',
140  'randomOption' => 'duck',
141  ],
142  null,
143  [],
144  [
145  'userAgent' => 'My Test',
146  'randomOption' => 'duck',
147  ]
148  ],
149 
150  ];
151  }
152 
161  public function testOptions( $sparql, $options, $timeout, $expectedUrl, $expectedOptions ) {
162  $requestFactory = $this->getMock( HttpRequestFactory::class );
163  $client = new SparqlClient( 'http://acme.test/', $requestFactory );
164 
165  $request = $this->getRequestMock( '{}' );
166 
167  $requestFactory->method( 'create' )->willReturnCallback(
168  function ( $url, $options ) use ( $request, $expectedUrl, $expectedOptions ) {
169  foreach ( $expectedUrl as $eurl ) {
170  $this->assertContains( $eurl, $url );
171  }
172  foreach ( $expectedOptions as $ekey => $evalue ) {
173  $this->assertArrayHasKey( $ekey, $options );
174  $this->assertEquals( $options[$ekey], $evalue );
175  }
176  return $request;
177  }
178  );
179 
180  if ( !is_null( $options ) ) {
181  $client->setClientOptions( $options );
182  }
183  if ( !is_null( $timeout ) ) {
184  $client->setTimeout( $timeout );
185  }
186 
187  $result = $client->query( $sparql );
188  }
189 
190 }
MediaWiki\Sparql\SparqlClientTest
\MediaWiki\Sparql\SparqlClient
Definition: SparqlClientTest.php:12
MediaWiki\Http\HttpRequestFactory
Factory creating MWHttpRequest objects.
Definition: HttpRequestFactory.php:34
$result
The index of the header message $result[1]=The index of the body text message $result[2 through n]=Parameters passed to body text message. Please note the header message cannot receive/use parameters. 'ImportHandleLogItemXMLTag':When parsing a XML tag in a log item. Return false to stop further processing of the tag $reader:XMLReader object $logInfo:Array of information 'ImportHandlePageXMLTag':When parsing a XML tag in a page. Return false to stop further processing of the tag $reader:XMLReader object & $pageInfo:Array of information 'ImportHandleRevisionXMLTag':When parsing a XML tag in a page revision. Return false to stop further processing of the tag $reader:XMLReader object $pageInfo:Array of page information $revisionInfo:Array of revision information 'ImportHandleToplevelXMLTag':When parsing a top level XML tag. Return false to stop further processing of the tag $reader:XMLReader object 'ImportHandleUnknownUser':When a user doesn 't exist locally, this hook is called to give extensions an opportunity to auto-create it. If the auto-creation is successful, return false. $name:User name 'ImportHandleUploadXMLTag':When parsing a XML tag in a file upload. Return false to stop further processing of the tag $reader:XMLReader object $revisionInfo:Array of information 'ImportLogInterwikiLink':Hook to change the interwiki link used in log entries and edit summaries for transwiki imports. & $fullInterwikiPrefix:Interwiki prefix, may contain colons. & $pageTitle:String that contains page title. 'ImportSources':Called when reading from the $wgImportSources configuration variable. Can be used to lazy-load the import sources list. & $importSources:The value of $wgImportSources. Modify as necessary. See the comment in DefaultSettings.php for the detail of how to structure this array. 'InfoAction':When building information to display on the action=info page. $context:IContextSource object & $pageInfo:Array of information 'InitializeArticleMaybeRedirect':MediaWiki check to see if title is a redirect. & $title:Title object for the current page & $request:WebRequest & $ignoreRedirect:boolean to skip redirect check & $target:Title/string of redirect target & $article:Article object 'InternalParseBeforeLinks':during Parser 's internalParse method before links but after nowiki/noinclude/includeonly/onlyinclude and other processings. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InternalParseBeforeSanitize':during Parser 's internalParse method just before the parser removes unwanted/dangerous HTML tags and after nowiki/noinclude/includeonly/onlyinclude and other processings. Ideal for syntax-extensions after template/parser function execution which respect nowiki and HTML-comments. & $parser:Parser object & $text:string containing partially parsed text & $stripState:Parser 's internal StripState object 'InterwikiLoadPrefix':When resolving if a given prefix is an interwiki or not. Return true without providing an interwiki to continue interwiki search. $prefix:interwiki prefix we are looking for. & $iwData:output array describing the interwiki with keys iw_url, iw_local, iw_trans and optionally iw_api and iw_wikiid. 'InvalidateEmailComplete':Called after a user 's email has been invalidated successfully. $user:user(object) whose email is being invalidated 'IRCLineURL':When constructing the URL to use in an IRC notification. Callee may modify $url and $query, URL will be constructed as $url . $query & $url:URL to index.php & $query:Query string $rc:RecentChange object that triggered url generation 'IsFileCacheable':Override the result of Article::isFileCacheable()(if true) & $article:article(object) being checked 'IsTrustedProxy':Override the result of IP::isTrustedProxy() & $ip:IP being check & $result:Change this value to override the result of IP::isTrustedProxy() 'IsUploadAllowedFromUrl':Override the result of UploadFromUrl::isAllowedUrl() $url:URL used to upload from & $allowed:Boolean indicating if uploading is allowed for given URL 'isValidEmailAddr':Override the result of Sanitizer::validateEmail(), for instance to return false if the domain name doesn 't match your organization. $addr:The e-mail address entered by the user & $result:Set this and return false to override the internal checks 'isValidPassword':Override the result of User::isValidPassword() $password:The password entered by the user & $result:Set this and return false to override the internal checks $user:User the password is being validated for 'Language::getMessagesFileName':$code:The language code or the language we 're looking for a messages file for & $file:The messages file path, you can override this to change the location. 'LanguageGetNamespaces':Provide custom ordering for namespaces or remove namespaces. Do not use this hook to add namespaces. Use CanonicalNamespaces for that. & $namespaces:Array of namespaces indexed by their numbers 'LanguageGetTranslatedLanguageNames':Provide translated language names. & $names:array of language code=> language name $code:language of the preferred translations 'LanguageLinks':Manipulate a page 's language links. This is called in various places to allow extensions to define the effective language links for a page. $title:The page 's Title. & $links:Array with elements of the form "language:title" in the order that they will be output. & $linkFlags:Associative array mapping prefixed links to arrays of flags. Currently unused, but planned to provide support for marking individual language links in the UI, e.g. for featured articles. 'LanguageSelector':Hook to change the language selector available on a page. $out:The output page. $cssClassName:CSS class name of the language selector. 'LinkBegin':DEPRECATED since 1.28! Use HtmlPageLinkRendererBegin instead. Used when generating internal and interwiki links in Linker::link(), before processing starts. Return false to skip default processing and return $ret. See documentation for Linker::link() for details on the expected meanings of parameters. $skin:the Skin object $target:the Title that the link is pointing to & $html:the contents that the< a > tag should have(raw HTML) $result
Definition: hooks.txt:1983
Http\userAgent
static userAgent()
A standard user-agent we can use for external requests.
Definition: Http.php:129
MediaWiki\Sparql\SparqlClient
Simple SPARQL client.
Definition: SparqlClient.php:31
MediaWiki\Sparql\SparqlClientTest\optionsProvider
optionsProvider()
Definition: SparqlClientTest.php:94
StatusValue\newFatal
static newFatal( $message)
Factory function for fatal errors.
Definition: StatusValue.php:68
MediaWiki\Sparql\SparqlClientTest\getRequestMock
getRequestMock( $content)
Definition: SparqlClientTest.php:22
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
$request
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on $request
Definition: hooks.txt:2636
StatusValue\newGood
static newGood( $value=null)
Factory function for good results.
Definition: StatusValue.php:81
MWHttpRequest
This wrapper class will call out to curl (if available) or fallback to regular PHP if necessary for h...
Definition: MWHttpRequest.php:32
MediaWiki\Sparql\SparqlClientTest\getRequestFactory
getRequestFactory( $request)
Definition: SparqlClientTest.php:16
MediaWiki\Sparql\SparqlClientTest\testBadQuery
testBadQuery()
\Mediawiki\Sparql\SparqlException
Definition: SparqlClientTest.php:86
$options
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped & $options
Definition: hooks.txt:1985
MediaWiki\Sparql\SparqlClientTest\testQuery
testQuery()
Definition: SparqlClientTest.php:29
MediaWiki\Sparql
Definition: SparqlClient.php:21
as
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
$content
$content
Definition: pageupdater.txt:72
class
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
Definition: maintenance.txt:52
Http
Various HTTP related functions.
Definition: Http.php:27
MediaWiki\Sparql\SparqlClient\MAX_GET_SIZE
const MAX_GET_SIZE
Limit on how long can be the query to be sent by GET.
Definition: SparqlClient.php:36
MediaWiki\Sparql\SparqlClientTest\testOptions
testOptions( $sparql, $options, $timeout, $expectedUrl, $expectedOptions)
optionsProvider
Definition: SparqlClientTest.php:161