MediaWiki  1.29.2
ChangesListFilterTest.php
Go to the documentation of this file.
1 <?php
2 
3 use Wikimedia\TestingAccessWrapper;
4 
9  protected $group;
10 
11  public function setUp() {
12  $this->group = $this->getGroup( [ 'name' => 'group' ] );
13 
14  parent::setUp();
15  }
16 
17  protected function getGroup( $groupDefinition ) {
18  return new MockChangesListFilterGroup(
19  $groupDefinition + [
20  'isFullCoverage' => true,
21  'type' => 'some_type',
22  'name' => 'group',
23  'filters' => [],
24  ]
25  );
26 
27  }
28 
29  // @codingStandardsIgnoreStart
34  // @codingStandardsIgnoreEnd
35  public function testReservedCharacter() {
36  $filter = new MockChangesListFilter(
37  [
38  'group' => $this->group,
39  'name' => 'some_name',
40  'priority' => 1,
41  ]
42  );
43  }
44 
45  // @codingStandardsIgnoreStart
50  // @codingStandardsIgnoreEnd
51  public function testDuplicateName() {
53  [
54  'group' => $this->group,
55  'name' => 'somename',
56  'priority' => 1,
57  ]
58  );
59 
61  [
62  'group' => $this->group,
63  'name' => 'somename',
64  'priority' => 2,
65  ]
66  );
67  }
68 
73  public function testSetAsSupersetOf() {
74  $groupA = $this->getGroup(
75  [
76  'name' => 'groupA',
77  'filters' => [
78  [
79  'name' => 'foo',
80  ],
81  [
82  'name' => 'bar',
83  ]
84  ],
85  ]
86  );
87 
88  $groupB = $this->getGroup(
89  [
90  'name' => 'groupB',
91  'filters' => [
92  [
93  'name' => 'baz',
94  ],
95  ],
96  ]
97  );
98 
99  $foo = TestingAccessWrapper::newFromObject( $groupA->getFilter( 'foo' ) );
100 
101  $bar = $groupA->getFilter( 'bar' );
102 
103  $baz = $groupB->getFilter( 'baz' );
104 
105  $foo->setAsSupersetOf( $bar );
106  $this->assertArrayEquals( [
107  [
108  'group' => 'groupA',
109  'filter' => 'bar',
110  ],
111  ],
112  $foo->subsetFilters, false, true
115  );
116 
117  $foo->setAsSupersetOf( $baz );
118  }
119 }
ChangesListFilterTest\testDuplicateName
testDuplicateName()
MWException Two filters in a group cannot have the same name: 'somename'.
Definition: ChangesListFilterTest.php:51
MediaWikiTestCase\assertArrayEquals
assertArrayEquals(array $expected, array $actual, $ordered=false, $named=false)
Assert that two arrays are equal.
Definition: MediaWikiTestCase.php:1498
ChangesListFilterTest\setUp
setUp()
Definition: ChangesListFilterTest.php:11
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
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
ChangesListFilterTest\getGroup
getGroup( $groupDefinition)
Definition: ChangesListFilterTest.php:17
ChangesListFilterTest\testSetAsSupersetOf
testSetAsSupersetOf()
MWException Supersets can only be defined for filters in the same group.
Definition: ChangesListFilterTest.php:73
MediaWikiTestCase
Definition: MediaWikiTestCase.php:13
ChangesListFilterTest
ChangesListFilter.
Definition: ChangesListFilterTest.php:8
ChangesListFilterTest\$group
$group
Definition: ChangesListFilterTest.php:9
ChangesListFilterTest\testReservedCharacter
testReservedCharacter()
MWException Filter names may not contain '_'.
Definition: ChangesListFilterTest.php:35
MockChangesListFilterGroup
Definition: MockChangesListFilterGroup.php:3
MockChangesListFilter
Definition: MockChangesListFilter.php:3
group
no text was provided for refs named< code > blankwithnoreference</code ></span ></li ></ol ></div > ! end ! test with< references/> in group ! wikitext Wikipedia rocks< ref > Proceeds of vol XXI</ref > Wikipedia rocks< ref group=note > Proceeds of vol XXI</ref >< references/>< references group=note/> ! html< p > Wikipedia rocks< sup id="cite_ref-1" class="reference">< a href="#cite_note-1"> &Wikipedia rocks< sup id="cite_ref-2" class="reference">< a href="#cite_note-2"> &</p >< div class="mw-references-wrap">< ol class="references">< li id="cite_note-1">< span class="mw-cite-backlink">< a href="#cite_ref-1"> ↑</a ></span >< span class="reference-text"> Proceeds of vol XXI</span ></li ></ol ></div >< div class="mw-references-wrap">< ol class="references">< li id="cite_note-2">< span class="mw-cite-backlink">< a href="#cite_ref-2"> ↑</a ></span >< span class="reference-text"> Proceeds of vol XXI</span ></li ></ol ></div > ! end ! test with< references/> in group
Definition: citeParserTests.txt:306