我正在编写一个使用 Scout 查找模型的测试。我在 Laravel 5.4 并使用 provider "tamayo/laravel-scout-elastic": "^3.0"
。
在我开始搜索模型时,似乎在我的测试中索引创建的项目没有完成。这是真的?我怎样才能解决这个问题?我的队列已经设置sync
并SCOUT_QUEUE
设置为false
.
这是一个不断失败的测试示例(断言搜索结果包含给定帖子失败)。任何帮助是极大的赞赏。
<?php
namespace Tests\Unit;
use App\Models\Category;
use App\Models\Post;
use App\Models\User;
use Tests\TestCase;
class SearchTest extends TestCase
{
/** @test * */
public function it_searches_the_whole_category_tree_for_posts()
{
// Given
/** @var Category $parentCategory */
$parentCategory = \factory(Category::class)->create([
'title' => 'myParentCategory',
]);
/** @var Category $childCategory */
$childCategory = \factory(Category::class)->create();
$childCategory->makeChildOf($parentCategory);
/** @var Post $post */
$post = \factory(Post::class)->create([
'user_id' => \factory(User::class)->create()->id,
]);
$post->requestCategories()->attach($childCategory);
// When
$searchResults = Post::search('myParentCategory')->get();
// Then
$this->assertTrue($searchResults->contains($post), 'Failed asserting that search results contain the given post.');
}
}