user3482304
user3482304

Reputation: 301

Laravel unit test with input with array name

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 ""

Upvotes: 0

Views: 1620

Answers (1)

alepeino
alepeino

Reputation: 9771

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');
}

Upvotes: 1

Related Questions