Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Open
LU API
Commits
60bd0eb5
Commit
60bd0eb5
authored
Feb 22, 2022
by
Dainis Abols
Browse files
PurchaseTest
parent
805308fa
Changes
1
Hide whitespace changes
Inline
Side-by-side
Tests/Functional/PurchaseTest.php
0 → 100644
View file @
60bd0eb5
<?php
declare
(
strict_types
=
1
);
namespace
Lu\LuApi\Functional
;
use
GuzzleHttp\Client
as
Guzzle
;
use
GuzzleHttp\Exception\GuzzleException
;
use
Lu\LuApi\Helpers\DataHelper
;
use
Vendor\MyExtension\Service\AbstractSomethingService
;
use
TYPO3\TestingFramework\Core\Unit\UnitTestCase
;
/**
* Test for route `?r=purchase`
*
* @author Dainis Abols <dainis.abols@lu.lv>
* @owner University of Latvia
* @since 21.02.2022
*/
class
PurchaseTest
extends
UnitTestCase
{
protected
$resetSingletonInstances
=
true
;
/**
* Public API URL
*
* @var string
*/
private
string
$url
=
'https://www.lu.lv/api/?r=purchase'
;
/**
* Purchases test
*
* @test
*/
public
function
purchaseTest
()
{
// Read url
$url
=
$this
->
url
;
$result
=
(
new
DataHelper
())
->
fetchUrl
(
$url
);
// Assert url read
$code
=
!
empty
(
$result
)
?
$result
->
getStatusCode
()
:
500
;
$this
->
assertEquals
(
200
,
$code
,
'Purchase Url read failed'
);
// Assert json return
$content
=
@
$result
->
getBody
()
->
getContents
();
$this
->
assertJson
(
$content
,
'Purchase Url response is not JSON'
);
// Check top level structure
$content
=
json_decode
(
$content
,
true
);
$this
->
assertTrue
(
count
(
$content
)
===
3
,
'Purchase structure count does not match'
);
$structure
=
function
(
$c
)
{
return
isset
(
$c
[
'recordsTotal'
])
&&
isset
(
$c
[
'recordsFiltered'
])
&&
isset
(
$c
[
'data'
]);
};
$this
->
assertTrue
(
$structure
(
$content
),
'Purchase data structure does not match'
);
// Check data object
$this
->
assertNotEmpty
(
$content
[
'data'
],
'Purchase has no data received'
);
// Check data object structure
$this
->
assertTrue
(
count
(
$content
[
'data'
][
0
])
===
9
,
'Purchase data count does not match'
);
}
}
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment