Code
Explorer
You are a developer and looking for Shopware projects?
Apply Now!
createAppFlowAction example
public
function
testFlowActionRouteHasAppFlowActions
(
)
: void
{
$aclRoleId
= Uuid::
randomHex
(
)
;
$this
->
createAclRole
(
$aclRoleId
)
;
$appId
= Uuid::
randomHex
(
)
;
$this
->
createApp
(
$appId
,
$aclRoleId
)
;
$flowAppId
= Uuid::
randomHex
(
)
;
$this
->
createAppFlowAction
(
$flowAppId
,
$appId
)
;
$url
= '/api/_info/flow-actions.json';
$client
=
$this
->
getBrowser
(
)
;
$client
->
request
(
'GET',
$url
)
;
$content
=
$client
->
getResponse
(
)
->
getContent
(
)
;
static
::
assertNotFalse
(
$content
)
;
static
::
assertJson
(
$content
)
;
$response
=
json_decode
(
$content
, true, 512, \JSON_THROW_ON_ERROR
)
;