Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2485321
SkusTest.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
5 KB
Referenced Files
None
Subscribers
None
SkusTest.php
View Options
<?php
namespace
Tests\Feature\Controller\Reseller
;
use
App\Sku
;
use
Tests\TestCase
;
class
SkusTest
extends
TestCase
{
/**
* {@inheritDoc}
*/
public
function
setUp
():
void
{
parent
::
setUp
();
self
::
useResellerUrl
();
Sku
::
where
(
'title'
,
'test'
)->
delete
();
$this
->
clearBetaEntitlements
();
}
/**
* {@inheritDoc}
*/
public
function
tearDown
():
void
{
Sku
::
where
(
'title'
,
'test'
)->
delete
();
$this
->
clearBetaEntitlements
();
parent
::
tearDown
();
}
/**
* Test fetching SKUs list for a domain (GET /domains/<id>/skus)
*/
public
function
testDomainSkus
():
void
{
$reseller1
=
$this
->
getTestUser
(
'reseller@'
.
\config
(
'app.domain'
));
$reseller2
=
$this
->
getTestUser
(
'reseller@sample-tenant.dev-local'
);
$admin
=
$this
->
getTestUser
(
'jeroen@jeroen.jeroen'
);
$user
=
$this
->
getTestUser
(
'john@kolab.org'
);
$domain
=
$this
->
getTestDomain
(
'kolab.org'
);
// Unauth access not allowed
$response
=
$this
->
get
(
"api/v4/domains/{$domain->id}/skus"
);
$response
->
assertStatus
(
401
);
// User access not allowed
$response
=
$this
->
actingAs
(
$user
)->
get
(
"api/v4/domains/{$domain->id}/skus"
);
$response
->
assertStatus
(
403
);
// Admin access not allowed
$response
=
$this
->
actingAs
(
$admin
)->
get
(
"api/v4/domains/{$domain->id}/skus"
);
$response
->
assertStatus
(
403
);
// Reseller from another tenant
$response
=
$this
->
actingAs
(
$reseller2
)->
get
(
"api/v4/domains/{$domain->id}/skus"
);
$response
->
assertStatus
(
404
);
// Reseller access
$response
=
$this
->
actingAs
(
$reseller1
)->
get
(
"api/v4/domains/{$domain->id}/skus"
);
$response
->
assertStatus
(
200
);
$json
=
$response
->
json
();
$this
->
assertCount
(
1
,
$json
);
// Note: Details are tested where we test API\V4\SkusController
}
/**
* Test fetching SKUs list
*/
public
function
testIndex
():
void
{
$reseller1
=
$this
->
getTestUser
(
'reseller@'
.
\config
(
'app.domain'
));
$reseller2
=
$this
->
getTestUser
(
'reseller@sample-tenant.dev-local'
);
$admin
=
$this
->
getTestUser
(
'jeroen@jeroen.jeroen'
);
$user
=
$this
->
getTestUser
(
'john@kolab.org'
);
$sku
=
Sku
::
withEnvTenantContext
()->
where
(
'title'
,
'mailbox'
)->
first
();
// Unauth access not allowed
$response
=
$this
->
get
(
"api/v4/skus"
);
$response
->
assertStatus
(
401
);
// User access not allowed
$response
=
$this
->
actingAs
(
$user
)->
get
(
"api/v4/skus"
);
$response
->
assertStatus
(
403
);
// Admin access not allowed
$response
=
$this
->
actingAs
(
$admin
)->
get
(
"api/v4/skus"
);
$response
->
assertStatus
(
403
);
$response
=
$this
->
actingAs
(
$reseller1
)->
get
(
"api/v4/skus"
);
$response
->
assertStatus
(
200
);
$json
=
$response
->
json
();
$this
->
assertCount
(
11
,
$json
);
$this
->
assertSame
(
100
,
$json
[
0
][
'prio'
]);
$this
->
assertSame
(
$sku
->
id
,
$json
[
0
][
'id'
]);
$this
->
assertSame
(
$sku
->
title
,
$json
[
0
][
'title'
]);
$this
->
assertSame
(
$sku
->
name
,
$json
[
0
][
'name'
]);
$this
->
assertSame
(
$sku
->
description
,
$json
[
0
][
'description'
]);
$this
->
assertSame
(
$sku
->
cost
,
$json
[
0
][
'cost'
]);
$this
->
assertSame
(
$sku
->
units_free
,
$json
[
0
][
'units_free'
]);
$this
->
assertSame
(
$sku
->
period
,
$json
[
0
][
'period'
]);
$this
->
assertSame
(
$sku
->
active
,
$json
[
0
][
'active'
]);
$this
->
assertSame
(
'user'
,
$json
[
0
][
'type'
]);
$this
->
assertSame
(
'Mailbox'
,
$json
[
0
][
'handler'
]);
// Test with another tenant
$sku
=
Sku
::
where
(
'title'
,
'mailbox'
)->
where
(
'tenant_id'
,
$reseller2
->
tenant_id
)->
first
();
$response
=
$this
->
actingAs
(
$reseller2
)->
get
(
"api/v4/skus"
);
$response
->
assertStatus
(
200
);
$json
=
$response
->
json
();
$this
->
assertCount
(
6
,
$json
);
$this
->
assertSame
(
100
,
$json
[
0
][
'prio'
]);
$this
->
assertSame
(
$sku
->
id
,
$json
[
0
][
'id'
]);
$this
->
assertSame
(
$sku
->
title
,
$json
[
0
][
'title'
]);
$this
->
assertSame
(
$sku
->
name
,
$json
[
0
][
'name'
]);
$this
->
assertSame
(
$sku
->
description
,
$json
[
0
][
'description'
]);
$this
->
assertSame
(
$sku
->
cost
,
$json
[
0
][
'cost'
]);
$this
->
assertSame
(
$sku
->
units_free
,
$json
[
0
][
'units_free'
]);
$this
->
assertSame
(
$sku
->
period
,
$json
[
0
][
'period'
]);
$this
->
assertSame
(
$sku
->
active
,
$json
[
0
][
'active'
]);
$this
->
assertSame
(
'user'
,
$json
[
0
][
'type'
]);
$this
->
assertSame
(
'Mailbox'
,
$json
[
0
][
'handler'
]);
}
/**
* Test fetching SKUs list for a user (GET /users/<id>/skus)
*/
public
function
testUserSkus
():
void
{
$reseller1
=
$this
->
getTestUser
(
'reseller@'
.
\config
(
'app.domain'
));
$reseller2
=
$this
->
getTestUser
(
'reseller@sample-tenant.dev-local'
);
$admin
=
$this
->
getTestUser
(
'jeroen@jeroen.jeroen'
);
$user
=
$this
->
getTestUser
(
'john@kolab.org'
);
// Unauth access not allowed
$response
=
$this
->
get
(
"api/v4/users/{$user->id}/skus"
);
$response
->
assertStatus
(
401
);
// User access not allowed
$response
=
$this
->
actingAs
(
$user
)->
get
(
"api/v4/users/{$user->id}/skus"
);
$response
->
assertStatus
(
403
);
// Admin access not allowed
$response
=
$this
->
actingAs
(
$admin
)->
get
(
"api/v4/users/{$user->id}/skus"
);
$response
->
assertStatus
(
403
);
// Reseller from another tenant
$response
=
$this
->
actingAs
(
$reseller2
)->
get
(
"api/v4/users/{$user->id}/skus"
);
$response
->
assertStatus
(
404
);
// Reseller access
$response
=
$this
->
actingAs
(
$reseller1
)->
get
(
"api/v4/users/{$user->id}/skus"
);
$response
->
assertStatus
(
200
);
$json
=
$response
->
json
();
$this
->
assertCount
(
5
,
$json
);
// Note: Details are tested where we test API\V4\SkusController
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Fri, Nov 21, 3:42 PM (1 d, 18 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
387528
Default Alt Text
SkusTest.php (5 KB)
Attached To
Mode
R2 kolab
Attached
Detach File
Event Timeline
Log In to Comment