Laravel 5.6: assertSessionHasErrors, приводящее к ошибке «Нарушение ограничения целостности: 19 Не выполнено ограничение NULL» - PullRequest
0 голосов
/ 05 марта 2019

Я пытаюсь настроить тест, который проверяет, что неполные формы не могут быть отправлены в базу данных, и я продолжаю сталкиваться с проблемами, в настоящее время каждый раз, когда я запускаю phpunit, вот что я получаю:

enter image description here

Мой тест настроен так:

public function test_incomplete_form_cannot_be_submitted()
{
  $user = factory(User::class)->states('confirmed', 'normaluser')->create([
      'id' => '1',
  ]);
  $form = factory(Form::class)->states('incomplete')->create(['status' => 'submitted', 'user_id' => '1', 'id' => '5',]);

  $this->actingAs($user)->post(route('forms.store'), $form->toArray());

  $this->assertSessionHasErrors(['company_name', 'form_info', 'uploads', 'state']);
}

И фабрика для настройки неполной формы настроена следующим образом:

 $factory->state(App\Form::class, 'incomplete', function (Faker $faker) {
  return [
    'company_name' => null,
    'form_info' => [
      'contact_fname' => null,
      'contact_lname' => null,
      'address1' => null,
      'dist_city' => null,
      'zip_code' => null,
      'multiple_locations' => null,
      'dist_phone' => null,
      'dist_email' => null,
      'company_website' => null,
      'additional_company_info' => null,
      'company_ownership_structure' => null,
      'business_manager' => [
        '0' => [
          'title' => null,
          'name' => null,
          'phone' => null,
          'email' => null,
        ],
      ],
      'business_planner' => [
        '0' => [
          'title' => null,
          'name' => null,
          'phone' => null,
          'email' => null,
        ],
      ],
      'sales_rep_compensation' => null,
      'midlevel_manager_compensation' => null,
      'sales_state' => null,
      'county' => [
        '0' => null,
      ],
      'split_county' => null,
      'split_county_details' => null,
      'other_brands_represented' => [
        '0' => null,
      ],
      'other_brands_in_territory' => null,
      'company_sales_approach' => null,
      'vision_for_us' => null,
      'who_purchases_the_beer' => null,
      'anticipated_spending_details' => null,
      'what_other_products' => null,
      'chain_retail_coverage' => null,
      'total_size' => null,
      'last_full_year_sales_for_craft' => null,
      'other_breweries_pursue' => null,
      'describe_packaged_beer_space' => null,
      'describe_cooler_space' => null,
      'firkin_handling_procedures' => null,
      'secure_storage' => null,
      'describe_recoup_area' => null,
      'describe_trucks' => null,
      'pos_storage_areas' => null,
      'quality_policies' => null,
      'product_rotation_systems' => null,
      'draft_department_capabilities' => null,
      'channel_focus' => null,
      'channel_focus_details' => null,
      'in_house_signs' => null,
      'sign_printers' => null,
      'sign_shop_employees' => null,
      'other_ownership' => null,
      'other_ownership_details' => null,
    ],
    'state' => 'Alabama',
    'uploads' => [
      'top_25_accounts' => null,
      'first_year_sales_estimate' => null,
      'packaging_space_images' => [
        '0' => null,
      ],
      'storage_images' => [
        '0' => null,
      ],
      'marketing_signage' => [
        '0' => null,
      ],
    ],
  ];
});

Я уже пытался изменить тест с factory ...-> create на factory ...-> make, изменив assertSessionHasErrors, чтобы проверять только ['uploads.top_25_accounts'], и сделать форму $ просто пустым массивом , но ничего не работает.

1 Ответ

0 голосов
/ 05 марта 2019

Задача 1:

Ваше утверждение никогда не достигается, поскольку create() на вашем заводе пытается создать новую запись в базе данных, но company_name не может быть NULL и выдает исключение.

Решение:

Изменить create() на make().

$form = factory(Form::class)->states('incomplete')->make([
    'status' => 'submitted', 
    'user_id' => '1', 
    'id' => '5',
]);


Задача 2:

Вы должны вызвать assertSessionHasErrors() для объекта ответа. $this->assertSessionHasErrors) не существует.

Решение:

public function test_incomplete_form_cannot_be_submitted()
{
  $user = factory(User::class)->states('confirmed', 'normaluser')->create([
      'id' => '1',
  ]);
  $form = factory(Form::class)->states('incomplete')->make([
      'status' => 'submitted', 
      'user_id' => '1', 
      'id' => '5',
  ]);

  $response = $this->actingAs($user)->post(route('forms.store'), $form->toArray());

  $response->assertSessionHasErrors(['company_name', 'form_info', 'uploads', 'state']);
}
...