當前位置: 首頁>>代碼示例>>PHP>>正文


PHP WP_Mock類代碼示例

本文整理匯總了PHP中WP_Mock的典型用法代碼示例。如果您正苦於以下問題:PHP WP_Mock類的具體用法?PHP WP_Mock怎麽用?PHP WP_Mock使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了WP_Mock類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: test_textarea_wysiwyg

 public function test_textarea_wysiwyg()
 {
     $textarea = new Textarea('mon_textarea', null, "mon_textarea_id", array('wysiwyg' => true));
     \WP_Mock::expectActionAdded('admin_print_footer_scripts', array($textarea, 'addEditorTinymce'), 99);
     $html = $textarea->getDisplay();
     $this->assertRegExp('/<textarea(. *)+><\\/textarea>/', $html);
 }
開發者ID:Weysan,項目名稱:wp-framework-backend-form,代碼行數:7,代碼來源:TextareaTest.php

示例2: testRegister

 public function testRegister()
 {
     $layoutRegister = new \Dxw\Iguana\Theme\LayoutRegister($this->getHelpers());
     $this->assertInstanceOf(\Dxw\Iguana\Registerable::class, $layoutRegister);
     \WP_Mock::expectFilterAdded('template_include', [\Dxw\Iguana\Theme\Layout::class, 'apply'], 99);
     $layoutRegister->register();
 }
開發者ID:dxw,項目名稱:iguana-theme,代碼行數:7,代碼來源:layout_register_test.php

示例3: test_ready_priority

 /**
  * Tests hooking the template loader to the WordPress template loading filters
  * with a priority.
  *
  * @covers ::ready
  *
  * @dataProvider loader_provider
  */
 public function test_ready_priority(Loader $loader)
 {
     $priority = rand(11, 99);
     \WP_Mock::expectFilterAdded('template_include', array($loader, 'filter'), $priority);
     $loader->ready($priority);
     $this->assertHooksAdded();
 }
開發者ID:goblindegook,項目名稱:syllables,代碼行數:15,代碼來源:Loader_Test.php

示例4: react

 public function react($args)
 {
     \WP_Mock::invokeAction($this->name);
     $arg_num = count($args);
     if (0 === $arg_num) {
         if (!isset($this->processors['argsnull'])) {
             return;
         }
         $this->processors['argsnull']->react();
     } else {
         $processors = $this->processors;
         for ($i = 0; $i < $arg_num - 1; $i++) {
             $arg = $this->safe_offset($args[$i]);
             if (!isset($processors[$arg])) {
                 return;
             }
             $processors = $processors[$arg];
         }
         $arg = $this->safe_offset($args[$arg_num - 1]);
         if (!isset($processors[$arg])) {
             return;
         }
         $processors[$arg]->react();
     }
 }
開發者ID:lloc,項目名稱:wp_mock,代碼行數:25,代碼來源:Action.php

示例5: test_customize_meta_boxes

 public function test_customize_meta_boxes()
 {
     $testee = new Testee();
     WP_Mock::wpFunction('remove_meta_box', array('times' => 1, 'args' => array(WP_Mock\Functions::type('string'), WP_Mock\Functions::type('string'), WP_Mock\Functions::type('string'))));
     $testee->customize_meta_boxes();
     $this->assertConditionsMet();
 }
開發者ID:tfrommen,項目名稱:external-content,代碼行數:7,代碼來源:PostTypeModelTest.php

示例6: testTaxonomyWithExistingToAndFromExpectsTaxonomiesMigrated

 /**
  * Tests our ability to mock the cli interface
  *
  * @group wip
  * @covers taxonomy
  * 
  */
 function testTaxonomyWithExistingToAndFromExpectsTaxonomiesMigrated()
 {
     // arrange
     $args = $this->validTaxonomyArgs;
     $assoc_args = array('post_type' => 'post');
     $this->posts['args'] = $args + $assoc_args;
     var_dump($this->posts);
     $mock = $this->getMockBuilder('\\CFPB\\Migrate_Command')->setMethods(array('get_specified_posts'))->getMock();
     $mock->expects($this->once())->method('get_specified_posts')->will($this->returnValue($this->posts));
     $new_term0 = array('slug' => 'term');
     $new_term1 = array('slug' => 'another');
     // mock taxonomy_exists form the WordPress API which we expect to be fired exactly twice
     \WP_Mock::wpFunction('taxonomy_exists', array('times' => 2, 'return' => true));
     // mock wp_get_post_terms from the WordPress API which we expect to fire exactly twice
     $terms = \WP_Mock::wpFunction('wp_get_post_terms', array('times' => 2, 'with' => array(array($this->post0->ID, $args[0]), array($this->post1->ID, $args[0])), 'return' => $this->terms));
     // mock wp_insert_term from the WordPress API which we expect to fire exactly twice
     $new_term = \WP_Mock::wpFunction('wp_insert_term', array('times' => 2, 'with' => array(array($this->term0->name, $args[1], array('slug' => $this->term0->slug))), 'return' => array('term_id' => 0, 'term_id' => 1)));
     // we expect get_term to fire twice with
     \WP_Mock::wpFunction('get_term', array('times' => 2, 'with' => array(array(1, $args[1])), 'return' => $this->term0));
     // we expect wp_set_objec_terms to fire twice
     \WP_Mock::wpFunction('wp_set_object_terms', array('times' => 2, 'return' => true));
     $cli = $this->cli->getMock();
     $cli->expects($this->once())->method('success')->will($this->returnValue('Success'));
     // act
     $action = $mock->taxonomy($args, $assoc_args);
     $this->assertTrue($action == 'Success');
 }
開發者ID:vccabral,項目名稱:cms-toolkit,代碼行數:34,代碼來源:test-cli-migrate.php

示例7: test_content_type

 public function test_content_type()
 {
     $plugin = new Plugin();
     \WP_Mock::wpFunction('register_post_type', array('times' => 3, 'arg' => array('lnh_matches')));
     \WP_Mock::wpFunction('get_option', array('times' => 1, 'arg' => array('lnh_equipe_handball'), 'return' => array('equipe' => 'toulouse', 'classement' => '1', 'joueurs' => '1', 'calendrier' => '1')));
     $plugin->createContentType();
 }
開發者ID:CouleurCitron,項目名稱:wp-lnh-flux,代碼行數:7,代碼來源:PluginTest.php

示例8: testSetupMetaBoxesNotPostOrPage

 public function testSetupMetaBoxesNotPostOrPage()
 {
     \WP_Mock::wpFunction('add_meta_box', ['times' => 0]);
     \WP_Mock::onFilter('dxw_content_review_post_types')->with(['post', 'page'])->reply(['meow']);
     \Dxw_Content_Review\Dxw_Content_Review::setup_meta_boxes('post');
     \Dxw_Content_Review\Dxw_Content_Review::setup_meta_boxes('page');
 }
開發者ID:dxw,項目名稱:dxw-content-review,代碼行數:7,代碼來源:content_review_test.php

示例9: apply_filters

 /**
  * Call the functions added to a filter hook.
  *
  * @param string $tag     The name of the filter hook.
  * @param mixed  $value   The value on which the filters hooked to <tt>$tag</tt> are applied on.
  * @param mixed  $var,... Additional variables passed to the functions hooked to <tt>$tag</tt>.
  *
  * @return mixed The filtered value after all hooked functions are applied to it.
  */
 function apply_filters($tag, $value)
 {
     $args = func_get_args();
     $args = array_slice($args, 1);
     $args[0] = $value;
     return \WP_Mock::onFilter($tag)->apply($args);
 }
開發者ID:lloc,項目名稱:wp_mock,代碼行數:16,代碼來源:function-mocks.php

示例10: test_get_answer

 /**
  * Test for the get_answer() method.
  *
  * @covers HookOracle::get_answer()
  *
  * @return void
  */
 public function test_get_answer()
 {
     $testee = new HookOracle();
     WP_Mock::expectAction('give_answer');
     WP_Mock::onFilter('the_answer')->with('42')->reply('4815162342');
     $this->assertSame('4815162342', $testee->get_answer(), 'get_answer() should return the expected answer.');
 }
開發者ID:tfrommen,項目名稱:testable-code,代碼行數:14,代碼來源:HookOracleWP_MockTest.php

示例11: test_meta_box_save_rejects_invalid_before_or_after_setting

 public function test_meta_box_save_rejects_invalid_before_or_after_setting()
 {
     $cpt = new CPT();
     WP_Mock::wpFunction('wp_verify_nonce', array('times' => 1, 'args' => array('nonce-value', 'itelic-renewal-reminders-metabox'), 'return' => true));
     WP_Mock::wpFunction('update_post_meta', array('times' => 1, 'args' => array(1, '_itelic_renewal_reminder_days', 3), 'return' => true));
     WP_Mock::wpFunction('update_post_meta', array('times' => 1, 'args' => array(1, '_itelic_renewal_reminder_boa', 'before'), 'return' => true));
     $cpt->do_save(1, array('itelic_reminder_nonce' => 'nonce-value', 'itelic_reminder' => array('days' => 3, 'boa' => 'garbage')));
 }
開發者ID:pemiu01,項目名稱:exchange-addon-licensing,代碼行數:8,代碼來源:test-cpt.php

示例12: test_getter_exception

 /**
  * Invalid items in the getter should return a WP_Error instance
  */
 public function test_getter_exception()
 {
     require_once 'dummy-files/wp_error.php';
     \WP_Mock::wpPassthruFunction('__');
     $context = new WP_TemplateContext();
     $context->invalid;
     $this->assertInstanceOf('WP_Error', $context->invalid);
 }
開發者ID:ericmann,項目名稱:mvpress,代碼行數:11,代碼來源:contextTest.php

示例13: testToString

 public function testToString()
 {
     $layout = new \Dxw\Iguana\Theme\Layout();
     $layout->slug = 'slug';
     \WP_Mock::onFilter('roots_wrap_slug')->with(['layouts/main.php'])->reply(['layouts/my-layout.php']);
     \WP_Mock::wpFunction('locate_template', ['args' => [['layouts/my-layout.php']], 'return' => 'correct output']);
     $this->assertEquals('correct output', $layout->__toString());
 }
開發者ID:dxw,項目名稱:iguana-theme,代碼行數:8,代碼來源:layout_test.php

示例14: tearDown

 public function tearDown()
 {
     \WP_Mock::tearDown();
     $cls = new ReflectionClass(\Dxw\Iguana\Registrar::class);
     $property = $cls->getProperty('singleton');
     $property->setAccessible(true);
     $property->setValue(null);
 }
開發者ID:dxw,項目名稱:iguana,代碼行數:8,代碼來源:registrar_test.php

示例15: test_checkAjaxReferer

 public function test_checkAjaxReferer()
 {
     $action = 'nonce_action';
     $query_arg = '_wpnonce_name';
     $myNonce = new WPnonce($action);
     \WP_Mock::wpFunction('check_ajax_referer', array('times' => 1, 'args' => array($myNonce->getAction(), $query_arg, true), 'return' => true));
     $this->assertTrue($myNonce->checkAjaxReferer($query_arg, true));
 }
開發者ID:christophwolff,項目名稱:wpnonce,代碼行數:8,代碼來源:WPnonceTest.php


注:本文中的WP_Mock類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。