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


PHP ObjectProphecy::urlToShortCode方法代码示例

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


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

示例1: exceptionWhileParsingLongUrlOutputsError

 /**
  * @test
  */
 public function exceptionWhileParsingLongUrlOutputsError()
 {
     $this->urlShortener->urlToShortCode(Argument::cetera())->willThrow(new InvalidUrlException())->shouldBeCalledTimes(1);
     $this->commandTester->execute(['command' => 'shortcode:generate', 'longUrl' => 'http://domain.com/invalid']);
     $output = $this->commandTester->getDisplay();
     $this->assertTrue(strpos($output, 'Provided URL "http://domain.com/invalid" is invalid. Try with a different one.') === 0);
 }
开发者ID:shlinkio,项目名称:shlink,代码行数:10,代码来源:GenerateShortcodeCommandTest.php

示例2: aGenericExceptionWillReturnError

 /**
  * @test
  */
 public function aGenericExceptionWillReturnError()
 {
     $this->urlShortener->urlToShortCode(Argument::type(Uri::class), Argument::type('array'))->willThrow(\Exception::class)->shouldBeCalledTimes(1);
     $request = ServerRequestFactory::fromGlobals()->withParsedBody(['longUrl' => 'http://www.domain.com/foo/bar']);
     $response = $this->action->__invoke($request, new Response());
     $this->assertEquals(500, $response->getStatusCode());
     $this->assertTrue(strpos($response->getBody()->getContents(), RestUtils::UNKNOWN_ERROR) > 0);
 }
开发者ID:shlinkio,项目名称:shlink,代码行数:11,代码来源:CreateShortcodeActionTest.php


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