Laravel unit test with input with array name

痞子三分冷 提交于 2020-01-17 01:22:06

问题


Input I am trying to fill:

<input type="text" id="order-number" name="order_numbers[]" class="form-control">

My unit test code:

    public function testSearch()
    {
        $this->actAsUser();
        $this->visit('/orders')
        ->type('12001546', 'order_numbers[]');
    }

Error I am getting:

1) OrdersTest::testSearch
InvalidArgumentException: Unreachable field ""

回答1:


I had the same problem, couldn't find a better solution than

// TestCase.php
protected function storeArrayInput($values, $name)
{
     $this->inputs[$name] = $values;
     return $this;
}

// YourTest.php
public function testSearch()
{
    $this->actAsUser();
    $this->visit('/orders')
        ->storeArrayInput(['12001546'], 'order_numbers');
}


来源:https://stackoverflow.com/questions/38203598/laravel-unit-test-with-input-with-array-name

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!