- 'brand' => 'brand',
- 'official_name:fr-ca' => 'official_name:fr-ca',
- 'official_name:fr' => 'official_name:fr',
- 'official_name:en-ca' => 'official_name:en-ca',
- 'official_name:en' => 'official_name:en',
- 'official_name' => 'official_name',
- 'ref' => 'ref',
- 'type' => 'type',
- ), $oParams->getPreferredLanguages('default'));
+ '_place_name' => '_place_name'
+ ), array_slice($oParams->getPreferredLanguages('default'), 0, 10));
+
+ $oParams = new ParameterParser(array('accept-language' => 'ja_rm,zh_pinyin'));
+ $this->assertSame(array(
+ 'name:ja_rm' => 'name:ja_rm',
+ '_place_name:ja_rm' => '_place_name:ja_rm',
+ 'name:zh_pinyin' => 'name:zh_pinyin',
+ '_place_name:zh_pinyin' => '_place_name:zh_pinyin',
+ 'name:ja' => 'name:ja',
+ '_place_name:ja' => '_place_name:ja',
+ 'name:zh' => 'name:zh',
+ '_place_name:zh' => '_place_name:zh',
+ 'name' => 'name',
+ '_place_name' => '_place_name'
+ ), array_slice($oParams->getPreferredLanguages('default'), 0, 10));
+ }
+
+ public function testHasSetAny()
+ {
+ $oParams = new ParameterParser(array(
+ 'one' => '',
+ 'two' => 0,
+ 'three' => '0',
+ 'four' => '1',
+ 'five' => 'anystring'
+ ));
+ $this->assertFalse($oParams->hasSetAny(array()));
+ $this->assertFalse($oParams->hasSetAny(array('')));
+ $this->assertFalse($oParams->hasSetAny(array('unknown')));
+ $this->assertFalse($oParams->hasSetAny(array('one', 'two', 'three')));
+ $this->assertTrue($oParams->hasSetAny(array('one', 'four')));
+ $this->assertTrue($oParams->hasSetAny(array('four')));
+ $this->assertTrue($oParams->hasSetAny(array('five')));