3

我正在编写一个使用 Scout 查找模型的测试。我在 Laravel 5.4 并使用 provider "tamayo/laravel-scout-elastic": "^3.0"

在我开始搜索模型时,似乎在我的测试中索引创建的项目没有完成。这是真的?我怎样才能解决这个问题?我的队列已经设置syncSCOUT_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.');
    }
}
4

1 回答 1

1

你到底在这里测试什么?您是否只是测试::search('foo')返回所需结果?如果是这样,那么您实际测试 Laravel Scout 的功能是否符合预期,这不是,也不应该是您/我们的工作。

最多您可以测试您是否已正确配置模型以按预期使用 Laravel Scout。

如果一个简单/愚蠢的测试就足够了,那么下面的代码应该会有所帮助;

namespace Tests\Unit;

use Tests\TestCase;
use Illuminate\Foundation\Testing\RefreshDatabase;

class ScoutInstallTest extends TestCase
{
    use RefreshDatabase;

    /**
     * Verify the class uses Laravel Scout
     *
     * @group scout-install
     * @test
     */
    public function foo_model_uses_scout()
    {
        $this->assertTrue(in_array('Laravel\Scout\Searchable', class_uses('App\FooModel')));
    }

    /**
     * Verify that a searchable array does exists, and contains
     * the values we desire to search on.
     *
     * @group scout-install
     * @test
     */
    public function foo_model_has_valid_searchable_array()
    {
        $fooModel = factory(\App\FooModel::class)->create();

        $this->assertTrue([
            'title', // an array of keys that are being indexed.
        ] === array_keys($fooModel->toSearchableArray()));
    }
}

注意在你的测试环境中禁用 Laravel Scout;<env name="SCOUT_DRIVER" value="null"/>

于 2017-11-28T01:34:22.293 回答