KDE apps: replace Calligra with LibreOffice
Signed-off-by: Adam Williamson <awilliam@redhat.com>
This commit is contained in:
parent
42d41a9419
commit
4758782d56
15
needles/kde/apps/lcalc_runs-20210304.json
Normal file
15
needles/kde/apps/lcalc_runs-20210304.json
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"xpos": 619,
|
||||||
|
"ypos": 77,
|
||||||
|
"width": 19,
|
||||||
|
"height": 17,
|
||||||
|
"type": "match"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"lcalc_runs"
|
||||||
|
]
|
||||||
|
}
|
BIN
needles/kde/apps/lcalc_runs-20210304.png
Normal file
BIN
needles/kde/apps/lcalc_runs-20210304.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 50 KiB |
15
needles/kde/apps/limpress_runs-20210304.json
Normal file
15
needles/kde/apps/limpress_runs-20210304.json
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"xpos": 208,
|
||||||
|
"ypos": 205,
|
||||||
|
"width": 144,
|
||||||
|
"height": 74,
|
||||||
|
"type": "match"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"limpress_runs"
|
||||||
|
]
|
||||||
|
}
|
BIN
needles/kde/apps/limpress_runs-20210304.png
Normal file
BIN
needles/kde/apps/limpress_runs-20210304.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 119 KiB |
15
needles/kde/apps/lwriter_runs-20210304.json
Normal file
15
needles/kde/apps/lwriter_runs-20210304.json
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"xpos": 510,
|
||||||
|
"ypos": 114,
|
||||||
|
"width": 88,
|
||||||
|
"height": 24,
|
||||||
|
"type": "match"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"lwriter_runs"
|
||||||
|
]
|
||||||
|
}
|
BIN
needles/kde/apps/lwriter_runs-20210304.png
Normal file
BIN
needles/kde/apps/lwriter_runs-20210304.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 42 KiB |
@ -1,25 +0,0 @@
|
|||||||
use base "installedtest";
|
|
||||||
use strict;
|
|
||||||
use testapi;
|
|
||||||
use utils;
|
|
||||||
|
|
||||||
# This test checks that Calligra Words starts.
|
|
||||||
|
|
||||||
sub run {
|
|
||||||
my $self = shift;
|
|
||||||
|
|
||||||
menu_launch_type 'calligra words';
|
|
||||||
# Check that it is started
|
|
||||||
assert_screen 'cwords_runs';
|
|
||||||
# Close the application
|
|
||||||
quit_with_shortcut();
|
|
||||||
}
|
|
||||||
|
|
||||||
sub test_flags {
|
|
||||||
return {always_rollback => 1};
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
1;
|
|
||||||
|
|
||||||
# vim: set sw=4 et:
|
|
@ -3,13 +3,14 @@ use strict;
|
|||||||
use testapi;
|
use testapi;
|
||||||
use utils;
|
use utils;
|
||||||
|
|
||||||
# This test checks that Calligra Sheets starts.
|
# This test checks that LibreOffice Calc starts.
|
||||||
|
|
||||||
sub run {
|
sub run {
|
||||||
my $self = shift;
|
my $self = shift;
|
||||||
menu_launch_type 'calligra sheets';
|
# Start the application
|
||||||
|
menu_launch_type 'libreoffice calc';
|
||||||
# Check that it is started
|
# Check that it is started
|
||||||
assert_screen 'csheets_runs';
|
assert_screen 'lcalc_runs';
|
||||||
# Close the application
|
# Close the application
|
||||||
quit_with_shortcut();
|
quit_with_shortcut();
|
||||||
}
|
}
|
26
tests/apps_startstop/kde/limpress.pm
Normal file
26
tests/apps_startstop/kde/limpress.pm
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
use base "installedtest";
|
||||||
|
use strict;
|
||||||
|
use testapi;
|
||||||
|
use utils;
|
||||||
|
|
||||||
|
# This test checks that LibreOffice Impress starts.
|
||||||
|
|
||||||
|
sub run {
|
||||||
|
my $self = shift;
|
||||||
|
# Start the application
|
||||||
|
menu_launch_type 'libreoffice impress';
|
||||||
|
# Check that it is started
|
||||||
|
assert_screen 'limpress_runs';
|
||||||
|
# Close the template chooser, then the application
|
||||||
|
send_key 'alt-f4';
|
||||||
|
quit_with_shortcut();
|
||||||
|
}
|
||||||
|
|
||||||
|
sub test_flags {
|
||||||
|
return {always_rollback => 1};
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
1;
|
||||||
|
|
||||||
|
# vim: set sw=4 et:
|
@ -3,14 +3,14 @@ use strict;
|
|||||||
use testapi;
|
use testapi;
|
||||||
use utils;
|
use utils;
|
||||||
|
|
||||||
# This test checks that Calligra Stage starts.
|
# This test checks that LibreOffice Writer starts.
|
||||||
|
|
||||||
sub run {
|
sub run {
|
||||||
my $self = shift;
|
my $self = shift;
|
||||||
menu_launch_type 'calligra stage';
|
# Start the application
|
||||||
|
menu_launch_type 'libreoffice writer';
|
||||||
# Check that it is started
|
# Check that it is started
|
||||||
assert_screen 'cstage_runs';
|
assert_screen 'lwriter_runs';
|
||||||
# Close the application
|
|
||||||
quit_with_shortcut();
|
quit_with_shortcut();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user