Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F113171
matrix-event-list-test.cpp
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
matrix-event-list-test.cpp
View Options
/*
* This file is part of kazv.
* SPDX-FileCopyrightText: 2024 tusooa <tusooa@kazv.moe>
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
#include
<kazv-defs.hpp>
#include
<QtTest>
#include
<QSignalSpy>
#include
<lager/state.hpp>
#include
<testfixtures/factory.hpp>
#include
"matrix-event-list.hpp"
#include
"matrix-event.hpp"
#include
"test-utils.hpp"
using
namespace
Kazv
;
using
namespace
Kazv
::
Factory
;
class
MatrixEventListTest
:
public
QObject
{
Q_OBJECT
private
Q_SLOTS
:
void
testEventList
();
};
void
MatrixEventListTest::testEventList
()
{
auto
eventList
=
EventList
{
makeEvent
(),
makeEvent
(),
};
auto
state
=
lager
::
make_state
(
eventList
,
lager
::
automatic_tag
{});
MatrixEventList
list
(
state
);
QCOMPARE
(
list
.
count
(),
2
);
auto
e1
=
toUniquePtr
(
list
.
at
(
0
));
QCOMPARE
(
e1
->
eventId
().
toStdString
(),
eventList
[
0
].
id
());
auto
e2
=
toUniquePtr
(
list
.
at
(
1
));
QCOMPARE
(
e2
->
eventId
().
toStdString
(),
eventList
[
1
].
id
());
}
QTEST_MAIN
(
MatrixEventListTest
)
#include
"matrix-event-list-test.moc"
File Metadata
Details
Attached
Mime Type
text/x-c
Expires
Sun, Nov 24, 3:45 PM (1 d, 6 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
39436
Default Alt Text
matrix-event-list-test.cpp (1 KB)
Attached To
Mode
rK kazv
Attached
Detach File
Event Timeline
Log In to Comment