Page Menu
Home
Sealhub
Search
Configure Global Search
Log In
Files
F995857
matches.subtest.ts
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Referenced Files
None
Subscribers
None
matches.subtest.ts
View Options
import
*
as
assert
from
"assert"
;
import
{
TestAppConstructor
,
withRunningApp
,
}
from
"../../../test_utils/with-test-app"
;
import
{
Collection
,
FieldTypes
}
from
"../../../main"
;
import
Matches
from
"./matches"
;
import
type
{
SerializedItemBody
}
from
"../../../chip-types/collection-item"
;
import
type
MockRestApi
from
"../../../test_utils/rest-api"
;
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
(),
};
named_filters
=
{
positive
:
new
Matches
(
"numbers"
,
{
number
:
{
">"
:
0
},
}),
negative
:
new
Matches
(
"numbers"
,
{
number
:
{
"<"
:
0
},
}),
};
})(),
};
};
}
describe
(
"Matches"
,
()
=>
{
async
function
setup
(
rest_api
:
MockRestApi
)
{
const
numbers
=
[
-
2
,
-
1
,
0
,
1
,
2
];
for
(
let
number
of
numbers
)
{
await
rest_api
.
post
(
"/api/v1/collections/numbers"
,
{
number
});
}
}
it
(
"returns only positive numbers when using filter"
,
()
=>
withRunningApp
(
extend
,
async
({
app
,
rest_api
})
=>
{
await
setup
(
rest_api
);
const
sealious_response
=
await
app
.
collections
.
numbers
.
suList
()
.
namedFilter
(
"positive"
)
.
fetch
();
assert
.
deepEqual
(
sealious_response
.
items
.
map
((
resource
)
=>
resource
.
get
(
"number"
)
),
[
1
,
2
]
);
}));
it
(
"returns only positive numbers when using @positive filter"
,
()
=>
withRunningApp
(
extend
,
async
({
rest_api
})
=>
{
await
setup
(
rest_api
);
const
{
items
}
=
await
rest_api
.
get
(
"/api/v1/collections/numbers/@positive?sort[number]=asc"
);
assert
.
deepEqual
(
items
.
map
((
resource
:
SerializedItemBody
)
=>
resource
.
number
),
[
1
,
2
]
);
}));
it
(
"returns empty array when using both @positive and @negative filters"
,
()
=>
withRunningApp
(
extend
,
async
({
rest_api
})
=>
{
await
setup
(
rest_api
);
const
{
items
}
=
await
rest_api
.
get
(
"/api/v1/collections/numbers/@positive/@negative"
);
assert
.
deepEqual
(
items
.
map
((
resource
:
SerializedItemBody
)
=>
resource
.
number
),
[]
);
}));
});
File Metadata
Details
Attached
Mime Type
text/x-java
Expires
Mon, Dec 23, 22:22 (23 h, 48 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
556982
Default Alt Text
matches.subtest.ts (2 KB)
Attached To
Mode
rS Sealious
Attached
Detach File
Event Timeline
Log In to Comment