MediaWiki  1.29.2
SwiftFileBackendTest.php
Go to the documentation of this file.
1 <?php
2 
3 use Wikimedia\TestingAccessWrapper;
4 
17  private $backend;
18 
19  protected function setUp() {
20  parent::setUp();
21 
22  $this->backend = TestingAccessWrapper::newFromObject(
23  new SwiftFileBackend( [
24  'name' => 'local-swift-testing',
25  'class' => 'SwiftFileBackend',
26  'wikiId' => 'unit-testing',
27  'lockManager' => LockManagerGroup::singleton()->get( 'fsLockManager' ),
28  'swiftAuthUrl' => 'http://127.0.0.1:8080/auth', // unused
29  'swiftUser' => 'test:tester',
30  'swiftKey' => 'testing',
31  'swiftTempUrlKey' => 'b3968d0207b54ece87cccc06515a89d4' // unused
32  ] )
33  );
34  }
35 
39  public function testSanitizeHdrs( $raw, $sanitized ) {
40  $hdrs = $this->backend->sanitizeHdrs( [ 'headers' => $raw ] );
41 
42  $this->assertEquals( $hdrs, $sanitized, 'sanitizeHdrs() has expected result' );
43  }
44 
45  public static function provider_testSanitizeHdrs() {
46  return [
47  [
48  [
49  'content-length' => 345,
50  'content-type' => 'image+bitmap/jpeg',
51  'content-disposition' => 'inline',
52  'content-duration' => 35.6363,
53  'content-Custom' => 'hello',
54  'x-content-custom' => 'hello'
55  ],
56  [
57  'content-disposition' => 'inline',
58  'content-duration' => 35.6363,
59  'content-custom' => 'hello',
60  'x-content-custom' => 'hello'
61  ]
62  ],
63  [
64  [
65  'content-length' => 345,
66  'content-type' => 'image+bitmap/jpeg',
67  'content-Disposition' => 'inline; filename=xxx; ' . str_repeat( 'o', 1024 ),
68  'content-duration' => 35.6363,
69  'content-custom' => 'hello',
70  'x-content-custom' => 'hello'
71  ],
72  [
73  'content-disposition' => 'inline;filename=xxx',
74  'content-duration' => 35.6363,
75  'content-custom' => 'hello',
76  'x-content-custom' => 'hello'
77  ]
78  ],
79  [
80  [
81  'content-length' => 345,
82  'content-type' => 'image+bitmap/jpeg',
83  'content-disposition' => 'filename=' . str_repeat( 'o', 1024 ) . ';inline',
84  'content-duration' => 35.6363,
85  'content-custom' => 'hello',
86  'x-content-custom' => 'hello'
87  ],
88  [
89  'content-disposition' => '',
90  'content-duration' => 35.6363,
91  'content-custom' => 'hello',
92  'x-content-custom' => 'hello'
93  ]
94  ]
95  ];
96  }
97 
101  public function testGetMetadataHeaders( $raw, $sanitized ) {
102  $hdrs = $this->backend->getMetadataHeaders( $raw );
103 
104  $this->assertEquals( $hdrs, $sanitized, 'getMetadataHeaders() has expected result' );
105  }
106 
107  public static function provider_testGetMetadataHeaders() {
108  return [
109  [
110  [
111  'content-length' => 345,
112  'content-custom' => 'hello',
113  'x-content-custom' => 'hello',
114  'x-object-meta-custom' => 5,
115  'x-object-meta-sha1Base36' => 'a3deadfg...',
116  ],
117  [
118  'x-object-meta-custom' => 5,
119  'x-object-meta-sha1base36' => 'a3deadfg...',
120  ]
121  ]
122  ];
123  }
124 
128  public function testGetMetadata( $raw, $sanitized ) {
129  $hdrs = $this->backend->getMetadata( $raw );
130 
131  $this->assertEquals( $hdrs, $sanitized, 'getMetadata() has expected result' );
132  }
133 
134  public static function provider_testGetMetadata() {
135  return [
136  [
137  [
138  'content-length' => 345,
139  'content-custom' => 'hello',
140  'x-content-custom' => 'hello',
141  'x-object-meta-custom' => 5,
142  'x-object-meta-sha1Base36' => 'a3deadfg...',
143  ],
144  [
145  'custom' => 5,
146  'sha1base36' => 'a3deadfg...',
147  ]
148  ]
149  ];
150  }
151 }
SwiftFileBackendTest\provider_testGetMetadataHeaders
static provider_testGetMetadataHeaders()
Definition: SwiftFileBackendTest.php:107
SwiftFileBackendTest\setUp
setUp()
Definition: SwiftFileBackendTest.php:19
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
LockManagerGroup\singleton
static singleton( $domain=false)
Definition: LockManagerGroup.php:53
SwiftFileBackendTest\$backend
TestingAccessWrapper $backend
Proxy to SwiftFileBackend.
Definition: SwiftFileBackendTest.php:17
SwiftFileBackendTest
FileRepo FileBackend medium.
Definition: SwiftFileBackendTest.php:15
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
SwiftFileBackend
Class for an OpenStack Swift (or Ceph RGW) based file backend.
Definition: SwiftFileBackend.php:35
MediaWikiTestCase
Definition: MediaWikiTestCase.php:13
SwiftFileBackendTest\testSanitizeHdrs
testSanitizeHdrs( $raw, $sanitized)
provider_testSanitizeHdrs
Definition: SwiftFileBackendTest.php:39
SwiftFileBackendTest\testGetMetadataHeaders
testGetMetadataHeaders( $raw, $sanitized)
provider_testGetMetadataHeaders
Definition: SwiftFileBackendTest.php:101
SwiftFileBackendTest\provider_testGetMetadata
static provider_testGetMetadata()
Definition: SwiftFileBackendTest.php:134
SwiftFileBackendTest\provider_testSanitizeHdrs
static provider_testSanitizeHdrs()
Definition: SwiftFileBackendTest.php:45
SwiftFileBackendTest\testGetMetadata
testGetMetadata( $raw, $sanitized)
provider_testGetMetadata
Definition: SwiftFileBackendTest.php:128