From 9b40c9788fc349972e6d45eb4a4a019c28000b97 Mon Sep 17 00:00:00 2001 From: spencerrlongg Date: Mon, 25 Mar 2024 18:58:49 -0500 Subject: [PATCH] rm commented tests --- tests/Feature/Api/Assets/AssetStoreTest.php | 70 --------------------- 1 file changed, 70 deletions(-) diff --git a/tests/Feature/Api/Assets/AssetStoreTest.php b/tests/Feature/Api/Assets/AssetStoreTest.php index cafd71f558..92a58a5006 100644 --- a/tests/Feature/Api/Assets/AssetStoreTest.php +++ b/tests/Feature/Api/Assets/AssetStoreTest.php @@ -438,74 +438,4 @@ class AssetStoreTest extends TestCase $json->has('messages.company_id')->etc(); }); } - - // Commenting these tests because they should be good, but there's a factory problem with - // custom fields that's preventing them from working properly. Leaving them here for now - // so that we can uncomment once we figure out how to resolve that. - //public function testCustomFieldCheckboxPassesValidationForValidOptionsWithString() - //{ - // $model = AssetModel::factory()->create(); - // $status = Statuslabel::factory()->create(); - // - // - // $this->settings->enableAutoIncrement(); - // - // $this->actingAsForApi(User::factory()->createAssets()->create()) - // ->postJson(route('api.assets.store'), [ - // 'model_id' => $model->id, - // 'status_id' => $status->id, - // '_snipeit_test_checkbox_7' => 'One, Two, Three', - // ]) - // ->assertOk() - // ->assertStatusMessageIs('success'); - //} - // - //public function testCustomFieldCheckboxPassesValidationForValidOptionsWithArray() - //{ - // $model = AssetModel::factory()->create(); - // $status = Statuslabel::factory()->create(); - // - // $this->settings->enableAutoIncrement(); - // - // $this->actingAsForApi(User::factory()->createAssets()->create()) - // ->postJson(route('api.assets.store'), [ - // 'model_id' => $model->id, - // 'status_id' => $status->id, - // '_snipeit_test_checkbox_7' => ['One', 'Two', 'Three'], - // ]) - // ->assertOk() - // ->assertStatusMessageIs('success'); - //} - // - //public function testCustomFieldCheckboxFailsValidationForInvalidOptionsWithString() - //{ - // $model = AssetModel::factory()->mbp13Model()->create(); - // $status = Statuslabel::factory()->create(); - // - // $this->settings->enableAutoIncrement(); - // - // $this->actingAsForApi(User::factory()->createAssets()->create()) - // ->postJson(route('api.assets.store'), [ - // 'model_id' => $model->id, - // 'status_id' => $status->id, - // '_snipeit_test_checkbox_7' => "One, Two, Four, Five", - // ]) - // ->assertStatusMessageIs('error'); - //} - // - //public function testCustomFieldCheckboxFailsValidationForInvalidOptionsWithArray() - //{ - // $model = AssetModel::factory()->mbp13Model()->create(); - // $status = Statuslabel::factory()->create(); - // - // $this->settings->enableAutoIncrement(); - // - // $this->actingAsForApi(User::factory()->createAssets()->create()) - // ->postJson(route('api.assets.store'), [ - // 'model_id' => $model->id, - // 'status_id' => $status->id, - // '_snipeit_test_checkbox_7' => ['One', 'Two', 'Four', 'Five'] - // ]) - // ->assertStatusMessageIs('error'); - //} }