Page Menu
Home
Sealhub
Search
Configure Global Search
Log In
Files
F995735
users-who-can.subtest.ts
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
users-who-can.subtest.ts
View Options
import
assert
from
"assert"
;
import
{
TestAppConstructor
,
withRunningApp
,
}
from
"../../test_utils/with-test-app"
;
import
{
assertThrowsAsync
}
from
"../../test_utils/assert-throws-async"
;
import
axios
from
"axios"
;
import
{
Collection
,
FieldTypes
,
Policies
}
from
"../../main"
;
import
{
TestApp
}
from
"../../test_utils/test-app"
;
const
extend
=
(
bricks_allowed
:
boolean
)
=>
function
(
t
:
TestAppConstructor
)
{
return
class
extends
t
{
collections
=
{
...
TestApp
.
BaseCollections
,
bricks
:
new
(
class
extends
Collection
{
fields
=
{
number
:
new
FieldTypes
.
Int
(),
};
policies
=
{
create
:
bricks_allowed
?
new
Policies
.
Public
()
:
new
Policies
.
Noone
(),
};
})(),
houses
:
new
(
class
extends
Collection
{
fields
=
{
number
:
new
FieldTypes
.
Int
(),
};
policies
=
{
create
:
new
Policies
.
UsersWhoCan
([
"create"
,
"bricks"
]),
};
})(),
};
};
};
describe
(
"users-who-can"
,
()
=>
{
it
(
"should deny if the user can't perform the action"
,
async
()
=>
withRunningApp
(
extend
(
false
),
async
({
app
,
base_url
})
=>
{
await
assertThrowsAsync
(
async
()
=>
axios
.
post
(
`
${
base_url
}
/api/v1/collections/houses`
,
{
address
:
"any"
,
})
.
then
(),
(
e
:
any
)
=>
{
assert
.
equal
(
e
.
response
.
status
,
401
);
assert
.
equal
(
e
.
response
.
data
.
message
,
app
.
i18n
(
"policy_users_who_can_deny"
,
[
"create"
,
"bricks"
,
app
.
i18n
(
"policy_noone_deny"
),
])
);
}
);
}));
it
(
"should allow if the user can't perform the action"
,
async
()
=>
withRunningApp
(
extend
(
true
),
async
({
base_url
})
=>
{
await
axios
.
post
(
`
${
base_url
}
/api/v1/collections/houses`
,
{
address
:
"any"
,
});
}));
});
File Metadata
Details
Attached
Mime Type
text/x-java
Expires
Mon, Dec 23, 14:26 (22 h, 23 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
553031
Default Alt Text
users-who-can.subtest.ts (1 KB)
Attached To
Mode
rS Sealious
Attached
Detach File
Event Timeline
Log In to Comment