Add testing of status code to API
This commit is contained in:
@@ -59,6 +59,7 @@ class ComponentTest extends AbstractTestCase
|
||||
'group_id' => 1,
|
||||
]);
|
||||
$this->seeJson(['name' => 'Foo']);
|
||||
$this->assertResponseOk();
|
||||
}
|
||||
|
||||
public function testGetNewComponent()
|
||||
@@ -67,6 +68,7 @@ class ComponentTest extends AbstractTestCase
|
||||
|
||||
$this->get('/api/v1/components/1');
|
||||
$this->seeJson(['name' => $component->name]);
|
||||
$this->assertResponseOk();
|
||||
}
|
||||
|
||||
public function testPutComponent()
|
||||
@@ -78,6 +80,7 @@ class ComponentTest extends AbstractTestCase
|
||||
'name' => 'Foo',
|
||||
]);
|
||||
$this->seeJson(['name' => 'Foo']);
|
||||
$this->assertResponseOk();
|
||||
}
|
||||
|
||||
public function testDeleteComponent()
|
||||
|
||||
@@ -20,7 +20,9 @@ class IncidentTest extends AbstractTestCase
|
||||
|
||||
public function testGetIncidents()
|
||||
{
|
||||
$this->get('/api/v1/incidents')->seeJson(['data' => []]);
|
||||
$this->get('/api/v1/incidents');
|
||||
$this->seeJson(['data' => []]);
|
||||
$this->assertResponseOk();
|
||||
}
|
||||
|
||||
public function testGetInvalidIncident()
|
||||
@@ -54,6 +56,7 @@ class IncidentTest extends AbstractTestCase
|
||||
'status' => 1,
|
||||
]);
|
||||
$this->seeJson(['name' => 'Foo']);
|
||||
$this->assertResponseOk();
|
||||
}
|
||||
|
||||
public function testGetNewIncident()
|
||||
@@ -62,6 +65,7 @@ class IncidentTest extends AbstractTestCase
|
||||
|
||||
$this->get('/api/v1/incidents/1');
|
||||
$this->seeJson(['name' => $incident->name]);
|
||||
$this->assertResponseOk();
|
||||
}
|
||||
|
||||
public function testPutIncident()
|
||||
@@ -73,6 +77,7 @@ class IncidentTest extends AbstractTestCase
|
||||
'name' => 'Foo',
|
||||
]);
|
||||
$this->seeJson(['name' => 'Foo']);
|
||||
$this->assertResponseOk();
|
||||
}
|
||||
|
||||
public function testDeleteIncident()
|
||||
|
||||
@@ -20,7 +20,9 @@ class MetricTest extends AbstractTestCase
|
||||
|
||||
public function testGetMetrics()
|
||||
{
|
||||
$this->get('/api/v1/metrics')->seeJson(['data' => []]);
|
||||
$this->get('/api/v1/metrics');
|
||||
$this->seeJson(['data' => []]);
|
||||
$this->assertResponseOk();
|
||||
}
|
||||
|
||||
public function testGetInvalidMetric()
|
||||
@@ -56,6 +58,7 @@ class MetricTest extends AbstractTestCase
|
||||
'display_chart' => 1,
|
||||
]);
|
||||
$this->seeJson(['name' => 'Foo']);
|
||||
$this->assertResponseOk();
|
||||
}
|
||||
|
||||
public function testGetNewMetric()
|
||||
@@ -64,6 +67,7 @@ class MetricTest extends AbstractTestCase
|
||||
|
||||
$this->get('/api/v1/metrics/1');
|
||||
$this->seeJson(['name' => $incident->name]);
|
||||
$this->assertResponseOk();
|
||||
}
|
||||
|
||||
public function testPutMetric()
|
||||
@@ -75,6 +79,7 @@ class MetricTest extends AbstractTestCase
|
||||
'name' => 'Foo',
|
||||
]);
|
||||
$this->seeJson(['name' => 'Foo']);
|
||||
$this->assertResponseOk();
|
||||
}
|
||||
|
||||
public function testDeleteMetric()
|
||||
|
||||
Reference in New Issue
Block a user