- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我一直在关注一般的 Mockery 和 PHP-Unit 教程 - 包括 Jeffrey Way 介绍的使用 PHP-Unit 和 Mockery 测试 Laravel。然而,对于这个应用程序——我们可以接受对 Eloquent 的依赖,而不是创建一个存储库类。
我们能够很好地模拟 Widget 模型的实例方法。但是,我们正在使用 Route:model 绑定(bind),我承认我不确定在测试 Controller 的 show($widget) 方法时如何模拟模型的 find() 方法。
我读过 https://github.com/padraic/mockery/wiki#mocking-public-static-methods文档,并看到可以在要模拟的类前面放置一个“别名”前缀。但我似乎也无法让它发挥作用。
这是 routes.php...
Route::model('widgets', 'Widget');
Route::resource('widgets', 'WidgetController');
这是(缩短的) Controller ...
<?php
/*
|--------------------------------------------------------------------------
| Widget Controller
|--------------------------------------------------------------------------
|
| An example controller that uses the pre-baked RESTful resource controller
| actions for index, create, store, show, edit, update, destroy, as well as a
| delete method to show the record before deletion.
|
| See routes.php ->
| Route::resource('widget', 'WidgetController');
| Route::get('widget/{widget}/delete', 'WidgetController@delete');
|
*/
class WidgetController extends BaseController
{
/**
* Widget Model
* @var Widget
*/
protected $widget;
/**
* Inject the model.
* @param Widget $widget
*/
public function __construct(Widget $widget)
{
parent::__construct();
$this->widget = $widget;
}
/**
* Display a listing of the resource.
*
* See public function data() below for the data source for the list,
* and the view/widget/index.blade.php for the jQuery script that makes
* the Ajax request.
*
* @return Response
*/
public function index()
{
// Title
$title = Lang::get('widget/title.widget_management');
// Show the page
return View::make('widget/index', compact('title'));
}
/**
* Show a single widget details page.
*
* @return View
*/
public function show($widget)
{
// Title
$title = Lang::get('widget/title.widget_show');
// Show the page
return View::make('widget/show', compact('widget', 'title'));
}
/**
* Show the form for creating a new resource.
*
* @return Response
*/
public function create()
{
// Title
$title = Lang::get('widget/title.create_a_new_widget');
// Show the page
return View::make('widget/create', compact('title'));
}
/**
* Store a newly created resource in storage.
*
* @return Response
*/
public function store()
{
// Validate the inputs
$rules = array(
'name'=> 'required|alpha_dash|unique:widgets,name',
'description'=> 'required'
);
// Validate the inputs
$validator = Validator::make(Input::all(), $rules);
// Check if the form validates with success
if ($validator->passes()) {
// Get the inputs, with some exceptions
$inputs = Input::except('csrf_token');
$this->widget->name = $inputs['name'];
$this->widget->description = $inputs['description'];
$this->widget->save($rules);
if ($this->widget->id) {
// Redirect to the new widget page
return Redirect::to('widgets')->with('success', Lang::get('widget/messages.create.success'));
} else {
// Redirect to the widget create page
//var_dump($this->widget);
return Redirect::to('widgets/create')->with('error', Lang::get('widget/messages.create.error'));
}
} else {
// Form validation failed
return Redirect::to('widgets/create')->withInput()->withErrors($validator);
}
}
}
这是测试夹具。
# /app/tests/controllers/WidgetControllerTest.php
class WidgetControllerTest extends TestCase
{
public function __Construct()
{
$this->mock = Mockery::mock('Eloquent', 'Widget');
}
public function setUp()
{
parent::setUp();
$this->app->instance('Widget', $this->mock);
}
public function tearDown()
{
Mockery::close();
}
/**
* Index
*/
public function testIndex()
{
$this->call('GET', 'widgets');
$this->assertTrue($this->client->getResponse()->isOk());
$this->assertViewHas('title');
}
/**
* Show
*/
public function testShow()
{
//$this->mock->shouldReceive('find')->with(1)->once()->andReturn(array('id'=>1));
$this->mock
->shouldReceive('find')
->once()
->andSet('id', 1);
//$this->call('GET', 'widgets/1');
$this->action('GET', 'WidgetController@show', array(
'widgets' => 1
));
$this->assertTrue($this->client->getResponse()->isOk());
}
/**
* Create
*/
public function testCreate()
{
$crawler = $this->client->request('GET', 'widgets/create');
$this->assertTrue($this->client->getResponse()->isOk());
$this->assertViewHas('title');
$this->assertCount(1, $crawler->filter('h3:contains("Create a New Widget")'));
}
/**
* Store Success
*/
public function testStoreSuccess()
{
$this->mock
->shouldReceive('save')
->once()
->andSet('id', 1);
$this->call('POST', 'widgets', array(
'name' => 'Fu-Widget',
'description' => 'Widget description'
));
$this->assertRedirectedToRoute('widgets.index');
}
/**
* Store Fail
*/
public function testStoreFail()
{
$this->call('POST', 'widgets', array(
'name' => '',
'description' => ''
));
$this->assertRedirectedToRoute('widgets.create');
$this->assertSessionHasErrors(['name']);
}
}
testShow 方法的错误是:调用未定义的方法 Widget::find()
想法?
最佳答案
好的 - 删除了路由模型绑定(bind),并向模拟模型的 View 返回了一个对象。
关于php - 模拟静态 Eloquent 模型方法,包括 find(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19753502/
我是 Laravel 的新手,我正在处理我的数据库迁移。对于一个表,我在表定义中包含了 $table->timestamps() 快捷方式。令我沮丧的是,我发现在我为表设置种子后,created_at
我有一个任务需要显示每种类型的假期,其中 id 是奇数。当我尝试在 Eloquent 中执行它时,它总是给我一个错误。 查询 Select holiday_type.id, holiday_type.
我有一个任务需要显示每种类型的假期,其中 id 是奇数。当我尝试在 Eloquent 中执行它时,它总是给我一个错误。 查询 Select holiday_type.id, holiday_type.
好的,我有型号 A链接到许多模型 B , 所以型号 A有一个 hasMany与模型的关系 B和型号B有一个 belongsTo与模型的关系 A . 但是,在所有这些中B有一个特定的,例如具有较高值的
如何应用 Laravel 的 Eloquent whereIn() 以便它包含 null? 我已经尝试过: User::whereIn("column", [null, 1, 2]) -> get()
我有一张库存变动表,其中显示了产品的历史记录(接收、移动位置等) 我有两个计算(通过总和)的查询: 原收到数量。 当前的实时数量(在事物被移动之后)。 这两个查询都返回相同模型的集合。它们将始终具有相
我一直在研究 Slim 2,最近才开始部署到生产服务器。到目前为止,一切似乎都运行正常。我能够登录,所以我知道我正在连接到数据库就好了。它识别出我登录的人,识别出我作为该用户拥有的权限。我有另一个表有
我在 Eloquent 中使用 orWhere 时遇到问题。 我有一个团队,这个团队有一些资料。我想获取状态 = 1 或状态 = 2 的所有配置文件。但我无法让它工作。 我的代码是这样的: $prof
在 Zizaco/entrust的 Laravel Entrust,如何设置与 Eloquent 的 Entrust 类关系,以便获得角色拥有的权限列表,如下所示: // get admin role
我想为我的两个表创建一个汇总报告,一个是员工表,另一个是 sims 表。这些表具有一对多的关系。我知道我们可以通过使用导出模型的数据->fromModel($model)但是有没有办法让我可以根据这两
我有两个模型,一个是扩展 Jenssegers\Model 的 mongo 模型,另一个是扩展 Illuminate\Model 的 sql 模型。这个 sql 模型没有定义连接名称,因为我们有多个数
我有两个多对一关系的模型: class Meal extends \Eloquent { /** * public Integer $id; - primary key
到目前为止,Vue2 对我来说读起来非常好,但除了这一点我很难调试。 Shop-show.vue ..... ..... {{shop.user.id}} .....
关闭。这个问题需要更多 focused .它目前不接受答案。 想要改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 2 年前。 Improve this q
我需要获取第二个表的 ID。我无法避免使用 INNER JOIN,因为我必须按第二个表中的列对结果进行排序。 这是我的两张 table events id name .... date
我正在尝试为我的用户提供 Laravel hiscores 分页表的排名数字。 这是我发现有效的 MySQL 查询。我正在尝试将其作为 Laravel Eloquent 查询来使用。 select @
我的产品模型上有这种关系。 public function productInventory(){ return $this->hasOne('App\Models\Ecommerce
我正在尝试在 Laravel 5.5 应用程序中为一个包含关系数据的表添加种子。 我有这两个表/模型: 用户 问题 在 app\User.php 模型文件上;我有以下 hasMany 关系: publ
我重写了这个帮助请求,并简化了我试图尽量减少移动部件数量的内容。 我是一名经验丰富的 OOP 程序员,但这是我使用 LAMP、Laravel 或 Eloquent 的第一个项目。 我正在 Larave
我正在使用 Laravel 和 MongoDB (jenssegers/laravel-mongodb) 开发一个网络应用程序。 在使用 php artisan make:model 创建新模型时,命
我是一名优秀的程序员,十分优秀!