forked from slint-ui/slint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.rs
95 lines (85 loc) · 2.96 KB
/
test.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
// Copyright © SixtyFPS GmbH <[email protected]>
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-commercial
//! Code to help with writing tests for the language server
use lsp_types::{Diagnostic, Url};
use std::collections::HashMap;
use crate::server_loop::{reload_document_impl, DocumentCache};
/// Create an empty `DocumentCache`
pub fn empty_document_cache(style: &str) -> DocumentCache {
let mut config = i_slint_compiler::CompilerConfiguration::new(
i_slint_compiler::generator::OutputFormat::Interpreter,
);
config.style = Some(style.to_string());
DocumentCache::new(config)
}
/// Create a `DocumentCache` with one document loaded into it.
pub fn loaded_document_cache(
style: &str,
content: String,
) -> (DocumentCache, Url, HashMap<Url, Vec<Diagnostic>>) {
let mut dc = empty_document_cache(style);
let dummy_absolute_path =
if cfg!(target_family = "windows") { "c://foo/bar.slint" } else { "/foo/bar.slint" };
let url = Url::from_file_path(dummy_absolute_path).unwrap();
let diag = spin_on::spin_on(async {
reload_document_impl(content, url.clone(), &mut dc)
.await
.expect("reload_document_impl failed.")
});
(dc, url, diag)
}
/// Create a `DocumentCache` with one comparatively complex test document loaded into it.
pub fn complex_document_cache(style: &str) -> (DocumentCache, Url, HashMap<Url, Vec<Diagnostic>>) {
loaded_document_cache(style,
r#"import { LineEdit, Button, Slider, HorizontalBox, VerticalBox } from "std-widgets.slint";
MainWindow := Window {
property <duration> total-time: slider.value * 1s;
property <duration> elapsed-time;
callback tick(duration);
tick(passed-time) => {
elapsed-time += passed-time;
elapsed-time = min(elapsed-time, total-time);
}
VerticalBox {
HorizontalBox {
padding-left: 0;
Text { text: "Elapsed Time:"; }
Rectangle {
min-width: 200px;
max-height: 30px;
background: gray;
Rectangle {
height: 100%;
width: parent.width * (elapsed-time/total-time);
background: lightblue;
}
}
}
Text{
text: (total-time / 1s) + "s";
}
HorizontalBox {
padding-left: 0;
Text {
text: "Duration:";
vertical-alignment: center;
}
slider := Slider {
maximum: 30s / 1s;
value: 10s / 1s;
changed(new-duration) => {
root.total-time = new-duration * 1s;
root.elapsed-time = min(root.elapsed-time, root.total-time);
}
}
}
Button {
text: "Reset";
clicked => {
elapsed-time = 0
}
}
}
}
"#.to_string())
}