Page Menu
Home
Sealhub
Search
Configure Global Search
Log In
Files
F8929601
roles.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
roles.subtest.ts
View Options
import
assert
from
"assert"
;
import
{
withRunningApp
}
from
"../../test_utils/with-test-app"
;
import
{
assertThrowsAsync
}
from
"../../test_utils/assert-throws-async"
;
import
{
Collection
,
FieldTypes
,
Policies
}
from
"../../main"
;
import
{
TestAppType
}
from
"../../test_utils/test-app"
;
function
extend
(
t
:
TestAppType
)
{
return
class
extends
t
{
collections
=
{
...
t
.
BaseCollections
,
secrets
:
new
(
class
extends
Collection
{
fields
=
{
content
:
new
FieldTypes
.
Text
(),
};
defaultPolicy
=
new
Policies
.
Roles
([
"admin"
]);
})(),
};
};
}
describe
(
"roles"
,
()
=>
{
it
(
"allows access to users with designated role and denies access to users without it"
,
async
()
=>
withRunningApp
(
extend
,
async
({
app
,
rest_api
})
=>
{
await
app
.
collections
.
users
.
suCreate
({
username
:
"regular-user"
,
email
:
"regular@example.com"
,
password
:
"password"
,
roles
:
[],
});
const
admin
=
await
app
.
collections
.
users
.
suCreate
({
username
:
"admin"
,
email
:
"admin@example.com"
,
password
:
"admin-password"
,
roles
:
[],
});
await
app
.
collections
[
"user-roles"
].
suCreate
({
user
:
admin
.
id
,
role
:
"admin"
,
});
await
app
.
collections
.
secrets
.
suCreate
({
content
:
"It's a secret to everybody"
,
});
const
admin_session
=
await
rest_api
.
login
({
username
:
"admin"
,
password
:
"admin-password"
,
});
const
{
items
:
admin_response
}
=
await
rest_api
.
get
(
"/api/v1/collections/secrets"
,
admin_session
);
assert
.
equal
(
admin_response
.
length
,
1
);
const
user_session
=
await
rest_api
.
login
({
username
:
"regular-user"
,
password
:
"password"
,
});
await
assertThrowsAsync
(
()
=>
rest_api
.
get
(
"/api/v1/collections/secrets"
,
user_session
),
(
error
)
=>
{
assert
.
equal
(
(
error
as
any
).
response
.
data
.
message
,
"you dont have any of the roles: admin."
);
}
);
}));
});
File Metadata
Details
Attached
Mime Type
text/x-java
Expires
Sat, Sep 20, 23:23 (23 h, 16 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
929211
Default Alt Text
roles.subtest.ts (1 KB)
Attached To
Mode
rS Sealious
Attached
Detach File
Event Timeline
Log In to Comment