Skip to content
Snippets Groups Projects
Commit f7345cfa authored by Florian Azizian's avatar Florian Azizian
Browse files

FIX TU baskerorder

parent 3446a20a
No related branches found
No related tags found
No related merge requests found
...@@ -12,6 +12,7 @@ use PHPUnit\Framework\TestCase; ...@@ -12,6 +12,7 @@ use PHPUnit\Framework\TestCase;
class BasketControllerTest extends TestCase class BasketControllerTest extends TestCase
{ {
private static $id = null; private static $id = null;
private static $baskets = null;
public function testCreate() public function testCreate()
{ {
...@@ -348,6 +349,7 @@ class BasketControllerTest extends TestCase ...@@ -348,6 +349,7 @@ class BasketControllerTest extends TestCase
$this->assertInternalType('array', $responseBody->baskets); $this->assertInternalType('array', $responseBody->baskets);
self::$id = $responseBody->baskets[0]->basket_id; self::$id = $responseBody->baskets[0]->basket_id;
self::$baskets = $responseBody->baskets;
} }
public function testUpdateSort() public function testUpdateSort()
...@@ -358,46 +360,30 @@ class BasketControllerTest extends TestCase ...@@ -358,46 +360,30 @@ class BasketControllerTest extends TestCase
$environment = \Slim\Http\Environment::mock(['REQUEST_METHOD' => 'PUT']); $environment = \Slim\Http\Environment::mock(['REQUEST_METHOD' => 'PUT']);
$request = \Slim\Http\Request::createFromEnvironment($environment); $request = \Slim\Http\Request::createFromEnvironment($environment);
$aArgs = [ // DOWN
'method' => 'DOWN', $firstBasket = self::$baskets[0];
'power' => 'ALL' self::$baskets[0] = self::$baskets[1];
]; self::$baskets[1] = $firstBasket;
$fullRequest = \httpRequestCustom::addContentInBody($aArgs, $request);
$response = $basketController->updateSort($fullRequest, new \Slim\Http\Response(), ['id' => self::$id]);
$responseBody = json_decode((string)$response->getBody());
$this->assertInternalType('array', $responseBody->baskets); $aArgs = self::$baskets;
$this->assertSame(self::$id, $responseBody->baskets[count($responseBody->baskets) - 1]->basket_id);
$aArgs = [
'method' => 'UP',
'power' => 'ONE'
];
$fullRequest = \httpRequestCustom::addContentInBody($aArgs, $request); $fullRequest = \httpRequestCustom::addContentInBody($aArgs, $request);
$response = $basketController->updateSort($fullRequest, new \Slim\Http\Response(), ['id' => self::$id]); $response = $basketController->updateSort($fullRequest, new \Slim\Http\Response(), ['id' => self::$id]);
$responseBody = json_decode((string)$response->getBody()); $responseBody = json_decode((string)$response->getBody());
$this->assertInternalType('array', $responseBody->baskets); $this->assertInternalType('array', $responseBody->baskets);
$this->assertSame(self::$id, $responseBody->baskets[count($responseBody->baskets) - 2]->basket_id); $this->assertSame(self::$id, $responseBody->baskets[1]->basket_id);
$aArgs = [ // UP
'method' => 'DOWN', self::$baskets = $responseBody->baskets;
'power' => 'ONE'
];
$fullRequest = \httpRequestCustom::addContentInBody($aArgs, $request);
$response = $basketController->updateSort($fullRequest, new \Slim\Http\Response(), ['id' => self::$id]); $firstBasket = self::$baskets[0];
$responseBody = json_decode((string)$response->getBody()); self::$baskets[0] = self::$baskets[1];
self::$baskets[1] = $firstBasket;
$this->assertInternalType('array', $responseBody->baskets); $aArgs = self::$baskets;
$this->assertSame(self::$id, $responseBody->baskets[count($responseBody->baskets) - 1]->basket_id);
$aArgs = [
'method' => 'UP',
'power' => 'ALL'
];
$fullRequest = \httpRequestCustom::addContentInBody($aArgs, $request); $fullRequest = \httpRequestCustom::addContentInBody($aArgs, $request);
$response = $basketController->updateSort($fullRequest, new \Slim\Http\Response(), ['id' => self::$id]); $response = $basketController->updateSort($fullRequest, new \Slim\Http\Response(), ['id' => self::$id]);
...@@ -406,30 +392,14 @@ class BasketControllerTest extends TestCase ...@@ -406,30 +392,14 @@ class BasketControllerTest extends TestCase
$this->assertInternalType('array', $responseBody->baskets); $this->assertInternalType('array', $responseBody->baskets);
$this->assertSame(self::$id, $responseBody->baskets[0]->basket_id); $this->assertSame(self::$id, $responseBody->baskets[0]->basket_id);
// Errors // Errors
$response = $basketController->updateSort($fullRequest, new \Slim\Http\Response(), ['id' => 'ABasketWichDoesNotExist']); $aArgs = self::$baskets;
$responseBody = json_decode((string)$response->getBody());
$this->assertInternalType('string', $responseBody->errors);
$this->assertSame('Basket not found', $responseBody->errors);
$response = $basketController->updateSort($fullRequest, new \Slim\Http\Response(), ['id' => self::$id]);
$responseBody = json_decode((string)$response->getBody());
$this->assertInternalType('string', $responseBody->errors);
$this->assertSame('Basket is already sorted', $responseBody->errors);
$aArgs = [
'method' => 'UPOUSE',
'power' => 'ALL'
];
$fullRequest = \httpRequestCustom::addContentInBody($aArgs, $request); $fullRequest = \httpRequestCustom::addContentInBody($aArgs, $request);
$response = $basketController->updateSort($fullRequest, new \Slim\Http\Response(), ['id' => self::$id]); $response = $basketController->updateSort($fullRequest, new \Slim\Http\Response(), ['id' => 'GAZGAZ']);
$responseBody = json_decode((string)$response->getBody()); $responseBody = json_decode((string)$response->getBody());
$this->assertInternalType('string', $responseBody->errors); $this->assertSame('Basket not found', $responseBody->errors);
$this->assertSame('Bad Request', $responseBody->errors);
} }
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment