当前位置: 首页>>代码示例>>PHP>>正文


PHP MediaWikiLangTestCase::setUp方法代码示例

本文整理汇总了PHP中MediaWikiLangTestCase::setUp方法的典型用法代码示例。如果您正苦于以下问题:PHP MediaWikiLangTestCase::setUp方法的具体用法?PHP MediaWikiLangTestCase::setUp怎么用?PHP MediaWikiLangTestCase::setUp使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在MediaWikiLangTestCase的用法示例。


在下文中一共展示了MediaWikiLangTestCase::setUp方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: setUp

 protected function setUp()
 {
     parent::setUp();
     $langObj = Language::factory('en');
     $localZone = 'UTC';
     $localOffset = date('Z') / 60;
     $this->setMwGlobals(array('wgMemc' => new EmptyBagOStuff(), 'wgContLang' => $langObj, 'wgLang' => $langObj, 'wgLocaltimezone' => $localZone, 'wgLocalTZoffset' => $localOffset, 'wgNamespaceProtection' => array(NS_MEDIAWIKI => 'editinterface')));
     $this->userName = 'Useruser';
     $this->altUserName = 'Altuseruser';
     date_default_timezone_set($localZone);
     $this->title = Title::makeTitle(NS_MAIN, "Main Page");
     if (!isset($this->userUser) || !$this->userUser instanceof User) {
         $this->userUser = User::newFromName($this->userName);
         if (!$this->userUser->getID()) {
             $this->userUser = User::createNew($this->userName, array("email" => "test@example.com", "real_name" => "Test User"));
             $this->userUser->load();
         }
         $this->altUser = User::newFromName($this->altUserName);
         if (!$this->altUser->getID()) {
             $this->altUser = User::createNew($this->altUserName, array("email" => "alttest@example.com", "real_name" => "Test User Alt"));
             $this->altUser->load();
         }
         $this->anonUser = User::newFromId(0);
         $this->user = $this->userUser;
     }
 }
开发者ID:nischayn22,项目名称:mediawiki-core,代码行数:26,代码来源:TitlePermissionTest.php

示例2: setUp

 protected function setUp()
 {
     parent::setUp();
     $this->setMwGlobals(['wgContLang' => Language::factory('tg'), 'wgLanguageCode' => 'tg', 'wgDefaultLanguageVariant' => false, 'wgRequest' => new FauxRequest([]), 'wgUser' => new User()]);
     $this->lang = new LanguageToTest();
     $this->lc = new TestConverter($this->lang, 'tg', ['tg', 'tg-latn']);
 }
开发者ID:claudinec,项目名称:galan-wiki,代码行数:7,代码来源:LanguageConverterTest.php

示例3: setUp

 public function setUp()
 {
     parent::setUp();
     global $wgLocalTZoffset;
     self::$offset = $wgLocalTZoffset;
     $this->iniSet('precision', 15);
 }
开发者ID:yusufchang,项目名称:app,代码行数:7,代码来源:TimeAdjustTest.php

示例4: setUp

 function setUp()
 {
     global $wgDefaultUserOptions;
     parent::setUp();
     //ensure the correct default gender
     $wgDefaultUserOptions['gender'] = 'unknown';
 }
开发者ID:Jobava,项目名称:diacritice-meta-repo,代码行数:7,代码来源:GenderCacheTest.php

示例5: setUp

 function setUp()
 {
     global $wgLocaltimezone, $wgLocalTZoffset, $wgMemc, $wgContLang, $wgLang;
     parent::setUp();
     if (!$wgMemc) {
         $wgMemc = new EmptyBagOStuff();
     }
     $wgContLang = $wgLang = Language::factory('en');
     $this->userName = "Useruser";
     $this->altUserName = "Altuseruser";
     date_default_timezone_set($wgLocaltimezone);
     $wgLocalTZoffset = date("Z") / 60;
     $this->title = Title::makeTitle(NS_MAIN, "Main Page");
     if (!isset($this->userUser) || !$this->userUser instanceof User) {
         $this->userUser = User::newFromName($this->userName);
         if (!$this->userUser->getID()) {
             $this->userUser = User::createNew($this->userName, array("email" => "test@example.com", "real_name" => "Test User"));
             $this->userUser->load();
         }
         $this->altUser = User::newFromName($this->altUserName);
         if (!$this->altUser->getID()) {
             $this->altUser = User::createNew($this->altUserName, array("email" => "alttest@example.com", "real_name" => "Test User Alt"));
             $this->altUser->load();
         }
         $this->anonUser = User::newFromId(0);
         $this->user = $this->userUser;
     }
 }
开发者ID:Tjorriemorrie,项目名称:app,代码行数:28,代码来源:TitlePermissionTest.php

示例6: setUp

 protected function setUp()
 {
     global $wgExtraNamespaces, $wgNamespaceContentModels, $wgContentHandlers, $wgContLang;
     parent::setUp();
     $wgExtraNamespaces[12312] = 'Dummy';
     $wgExtraNamespaces[12313] = 'Dummy_talk';
     $wgNamespaceContentModels[12312] = 'DUMMY';
     $wgContentHandlers['DUMMY'] = 'DummyContentHandlerForTesting';
     MWNamespace::getCanonicalNamespaces(true);
     # reset namespace cache
     $wgContLang->resetNamespaces();
     # reset namespace cache
     if (!$this->the_properties) {
         $this->the_properties = array("property1" => "value1", "property2" => "value2", "property3" => "value3", "property4" => "value4");
     }
     if (!$this->title1) {
         $page = $this->createPage('PagePropsTest_page_1', "just a dummy page", CONTENT_MODEL_WIKITEXT);
         $this->title1 = $page->getTitle();
         $page1ID = $this->title1->getArticleID();
         $this->setProperties($page1ID, $this->the_properties);
     }
     if (!$this->title2) {
         $page = $this->createPage('PagePropsTest_page_2', "just a dummy page", CONTENT_MODEL_WIKITEXT);
         $this->title2 = $page->getTitle();
         $page2ID = $this->title2->getArticleID();
         $this->setProperties($page2ID, $this->the_properties);
     }
 }
开发者ID:paladox,项目名称:2,代码行数:28,代码来源:PagePropsTest.php

示例7: setUp

 protected function setUp()
 {
     parent::setUp();
     $this->setMwGlobals(array('wgContLang' => Language::factory('tg'), 'wgLanguageCode' => 'tg', 'wgDefaultLanguageVariant' => false, 'wgMemc' => new EmptyBagOStuff(), 'wgRequest' => new FauxRequest(array()), 'wgUser' => new User()));
     $this->lang = new LanguageToTest();
     $this->lc = new TestConverter($this->lang, 'tg', array('tg', 'tg-latn'));
 }
开发者ID:MediaWiki-stable,项目名称:1.26.1,代码行数:7,代码来源:LanguageConverterTest.php

示例8: setUp

 /**
  * Anything that needs to happen before your tests should go here.
  */
 function setUp()
 {
     global $wgContLang;
     parent::setUp();
     /* For example, we need to set $wgContLang for creating a new Title */
     $wgContLang = Language::factory('en');
 }
开发者ID:eFFemeer,项目名称:seizamcore,代码行数:10,代码来源:SampleTest.php

示例9: setUp

 protected function setUp()
 {
     parent::setUp();
     $this->pages_to_delete = array();
     LinkCache::singleton()->clear();
     # avoid cached redirect status, etc
 }
开发者ID:Habatchii,项目名称:wikibase-for-mediawiki,代码行数:7,代码来源:WikiPageTest.php

示例10: setUp

 protected function setUp()
 {
     parent::setUp();
     // Avoid 'GetHumanTimestamp' hook and others
     $this->setMwGlobals('wgHooks', array());
     RequestContext::getMain()->setLanguage(Language::factory('en'));
 }
开发者ID:MediaWiki-stable,项目名称:1.26.1,代码行数:7,代码来源:MWTimestampTest.php

示例11: setUp

 protected function setUp()
 {
     parent::setUp();
     $this->initMessagesHref();
     $this->skin = new SkinTemplate();
     $this->skin->getContext()->setLanguage(Language::factory('en'));
 }
开发者ID:MediaWiki-stable,项目名称:1.26.1,代码行数:7,代码来源:SideBarTest.php

示例12: setUp

 protected function setUp()
 {
     parent::setUp();
     if (!extension_loaded('intl')) {
         $this->markTestSkipped('These tests require intl extension');
     }
 }
开发者ID:mangowi,项目名称:mediawiki,代码行数:7,代码来源:CollationTest.php

示例13: setUp

 protected function setUp()
 {
     parent::setUp();
     $dbw = wfGetDB(DB_MASTER);
     $dbw->replace('interwiki', ['iw_prefix'], ['iw_prefix' => 'linksupdatetest', 'iw_url' => 'http://testing.com/wiki/$1', 'iw_api' => 'http://testing.com/w/api.php', 'iw_local' => 0, 'iw_trans' => 0, 'iw_wikiid' => 'linksupdatetest']);
     $this->setMwGlobals('wgRCWatchCategoryMembership', true);
 }
开发者ID:claudinec,项目名称:galan-wiki,代码行数:7,代码来源:LinksUpdateTest.php

示例14: setUp

 public function setUp()
 {
     parent::setUp();
     self::$notifyCallCounter = 0;
     self::$mockRecentChange = self::getMock('RecentChange');
     $this->setContentLang('qqx');
 }
开发者ID:claudinec,项目名称:galan-wiki,代码行数:7,代码来源:CategoryMembershipChangeTest.php

示例15: setUp

 public function setUp()
 {
     parent::setUp();
     $conf = new SiteConfiguration();
     $conf->settings = array('wgServer' => array('enwiki' => 'http://en.example.org', 'ruwiki' => '//ru.example.org'), 'wgArticlePath' => array('enwiki' => '/w/$1', 'ruwiki' => '/wiki/$1'));
     $conf->suffixes = array('wiki');
     $this->setMwGlobals(array('wgConf' => $conf));
 }
开发者ID:rugby110,项目名称:mediawiki,代码行数:8,代码来源:WikiMapTest.php


注:本文中的MediaWikiLangTestCase::setUp方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。