Page Menu
Home
Sealhub
Search
Configure Global Search
Log In
Files
F995652
if.subtest.ts
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
3 KB
Referenced Files
None
Subscribers
None
if.subtest.ts
View Options
import
assert
from
"assert"
;
import
{
TestAppConstructor
,
withRunningApp
,
}
from
"../../test_utils/with-test-app"
;
import
{
App
,
Collection
,
FieldTypes
,
Policies
,
SpecialFilters
,
}
from
"../../main"
;
import
Matches
from
"../base-chips/special_filters/matches"
;
import
{
TestApp
}
from
"../../test_utils/test-app"
;
function
extend
(
t
:
TestAppConstructor
)
{
return
class
extends
t
{
collections
=
{
...
TestApp
.
BaseCollections
,
numbers
:
new
(
class
extends
Collection
{
fields
=
{
number
:
new
FieldTypes
.
Int
(),
number_str
:
new
FieldTypes
.
Text
(),
};
named_filters
=
{
positive
:
new
Matches
(
"numbers"
,
{
number
:
{
">"
:
0
},
}),
negative
:
new
Matches
(
"numbers"
,
{
number
:
{
"<"
:
0
},
}),
};
defaultPolicy
=
new
Policies
.
If
(
"numbers"
,
"negative"
,
Policies
.
LoggedIn
,
Policies
.
Public
);
})(),
};
};
}
async
function
createResources
(
app
:
App
)
{
for
(
let
number
of
[
-
1
,
0
,
1
])
{
await
app
.
collections
.
numbers
.
suCreate
({
number
,
number_str
:
number
.
toString
(),
});
}
await
app
.
collections
.
users
.
suCreate
({
username
:
"user"
,
password
:
"password"
,
});
}
describe
(
"if"
,
()
=>
{
it
(
"should only use 'when_true' access strategy when the item passes the filter"
,
async
()
=>
withRunningApp
(
extend
,
async
({
app
,
rest_api
})
=>
{
await
createResources
(
app
);
const
session
=
await
rest_api
.
login
({
username
:
"user"
,
password
:
"password"
,
});
const
{
items
:
resources_when_logged_in
}
=
await
rest_api
.
get
(
"/api/v1/collections/numbers?sort[number]=asc"
,
session
);
assert
.
equal
(
resources_when_logged_in
.
length
,
3
);
assert
.
equal
(
resources_when_logged_in
[
0
].
number
,
-
1
);
}));
it
(
"should only use 'when_false' access strategy when the item doesn't pass the filter"
,
async
()
=>
withRunningApp
(
extend
,
async
({
app
,
rest_api
})
=>
{
await
createResources
(
app
);
const
{
items
:
public_resources
}
=
await
rest_api
.
get
(
"/api/v1/collections/numbers?sort[number]=asc"
);
assert
.
equal
(
public_resources
.
length
,
2
);
}));
it
(
"should work properly with a boolean field set to false"
,
async
()
=>
withRunningApp
(
(
test_app
)
=>
class
extends
test_app
{
collections
=
{
...
TestApp
.
BaseCollections
,
tasks
:
new
(
class
extends
Collection
{
fields
=
{
title
:
new
FieldTypes
.
Text
(),
done
:
new
FieldTypes
.
Boolean
(),
};
named_filters
=
{
todo
:
new
SpecialFilters
.
Matches
(
"tasks"
,
{
done
:
false
,
}),
};
policies
=
{
list
:
new
Policies
.
If
(
"tasks"
,
"todo"
,
new
Policies
.
Public
(),
new
Policies
.
Noone
()
),
};
})(),
};
},
async
({
app
,
rest_api
})
=>
{
const
data
=
{
username
:
"user"
,
password
:
"passwordpassword"
,
};
await
app
.
collections
.
users
.
create
(
new
app
.
SuperContext
(),
data
);
const
session
=
await
rest_api
.
login
(
data
);
await
rest_api
.
get
(
"/api/v1/collections/tasks"
,
session
);
}
));
});
File Metadata
Details
Attached
Mime Type
text/x-java
Expires
Mon, Dec 23, 12:18 (1 d, 7 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
556898
Default Alt Text
if.subtest.ts (3 KB)
Attached To
Mode
rS Sealious
Attached
Detach File
Event Timeline
Log In to Comment