Skip to content
GitLab
Menu
Why GitLab
Pricing
Contact Sales
Explore
Why GitLab
Pricing
Contact Sales
Explore
Sign in
Get free trial
Primary navigation
Search or go to…
Project
Whisperfish - Signal on Sailfish OS
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Privacy statement
Keyboard shortcuts
?
What's new
6
Snippets
Groups
Projects
Show more breadcrumbs
Whisperfish
Whisperfish - Signal on Sailfish OS
Commits
c8ac48d5
Commit
c8ac48d5
authored
4 years ago
by
Markus Törnqvist
Browse files
Options
Downloads
Patches
Plain Diff
Implement row_count
This does not seem to be directly called, but it should be a convenient short-hand.
parent
ebb01e22
No related branches found
No related tags found
Loading
Pipeline
#163650007
failed
4 years ago
Stage: prepare
Stage: build
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/model/message.rs
+7
-1
7 additions, 1 deletion
src/model/message.rs
tests/model_message.rs
+51
-1
51 additions, 1 deletion
tests/model_message.rs
with
58 additions
and
2 deletions
src/model/message.rs
+
7
−
1
View file @
c8ac48d5
...
@@ -51,7 +51,13 @@ pub struct MessageModel {
...
@@ -51,7 +51,13 @@ pub struct MessageModel {
}
}
impl
MessageModel
{
impl
MessageModel
{
fn
load
(
&
mut
self
,
sid
:
i64
,
_peer_name
:
QString
)
{
#[allow(dead_code)]
pub
fn
row_count
(
&
self
)
->
i32
{
log
::
trace!
(
"rowCount called, returning {}"
,
self
.messages
.len
());
self
.messages
.len
()
as
i32
}
pub
fn
load
(
&
mut
self
,
sid
:
i64
,
_peer_name
:
QString
)
{
(
self
as
&
mut
dyn
QAbstractListModel
)
.begin_reset_model
();
(
self
as
&
mut
dyn
QAbstractListModel
)
.begin_reset_model
();
self
.messages
.clear
();
self
.messages
.clear
();
...
...
This diff is collapsed.
Click to expand it.
tests/model_message.rs
+
51
−
1
View file @
c8ac48d5
// TODO: Write the qt5-model tests here
use
rstest
::
rstest
;
use
harbour_whisperfish
::
model
::
MessageModel
;
use
harbour_whisperfish
::
store
::
Storage
;
use
harbour_whisperfish
::
store
::{
NewMessage
,
NewSession
};
use
qmetaobject
::
QString
;
mod
common
;
use
common
::
*
;
#[rstest]#[actix_rt::test]
async
fn
test_load_and_row_count
(
in_memory_db
:
Storage
)
{
let
session_config
=
NewSession
{
source
:
String
::
from
(
"+358501234567"
),
message
:
String
::
from
(
"whisperfish on paras:DDDD ja signal:DDD"
),
timestamp
:
0
,
sent
:
true
,
received
:
false
,
unread
:
false
,
is_group
:
false
,
group_id
:
None
,
group_name
:
None
,
group_members
:
None
,
has_attachment
:
false
,
};
setup_db
(
&
in_memory_db
);
setup_session
(
&
in_memory_db
,
&
session_config
);
let
new_messages
=
vec!
[
NewMessage
{
session_id
:
1
,
source
:
String
::
from
(
"+358501234567"
),
text
:
String
::
from
(
"nyt joni ne velat!"
),
timestamp
:
1024
,
sent
:
false
,
received
:
true
,
flags
:
0
,
attachment
:
None
,
mime_type
:
None
,
has_attachment
:
false
,
outgoing
:
false
,
}];
setup_messages
(
&
in_memory_db
,
new_messages
);
// Actual testing
let
mut
mm
=
MessageModel
::
default
();
assert_eq!
(
mm
.row_count
(),
0
);
mm
.load
(
1
,
QString
::
from
(
"WHY IS THIS NEEDED WHEN IT ISN'T NEEDED ELSEWHERE?!"
));
assert_eq!
(
mm
.row_count
(),
1
);
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment