Adjust cockpit log needles for Rawhide change
The Logs screen changed a bit. Also, it seems wrong to have 'notices' in all these needle names, so let's fix that.
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"tags": [
|
"tags": [
|
||||||
"cockpit_logs_notices_entry"
|
"cockpit_logs_entry"
|
||||||
],
|
],
|
||||||
"properties": [],
|
"properties": [],
|
||||||
"area": [
|
"area": [
|
Before Width: | Height: | Size: 71 KiB After Width: | Height: | Size: 71 KiB |
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"tags": [
|
"tags": [
|
||||||
"cockpit_logs_notices_entry"
|
"cockpit_logs_entry"
|
||||||
],
|
],
|
||||||
"area": [
|
"area": [
|
||||||
{
|
{
|
Before Width: | Height: | Size: 72 KiB After Width: | Height: | Size: 72 KiB |
15
needles/cockpit/logs_entry-20170710.json
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"height": 16,
|
||||||
|
"type": "match",
|
||||||
|
"width": 47,
|
||||||
|
"xpos": 783,
|
||||||
|
"ypos": 211
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"cockpit_logs_entry"
|
||||||
|
]
|
||||||
|
}
|
BIN
needles/cockpit/logs_entry-20170710.png
Normal file
After Width: | Height: | Size: 48 KiB |
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"tags": [
|
"tags": [
|
||||||
"cockpit_logs_notices_entry"
|
"cockpit_logs_entry"
|
||||||
],
|
],
|
||||||
"properties": [],
|
"properties": [],
|
||||||
"area": [
|
"area": [
|
Before Width: | Height: | Size: 76 KiB After Width: | Height: | Size: 76 KiB |
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"tags": [
|
"tags": [
|
||||||
"cockpit_logs_notices_entry"
|
"cockpit_logs_entry"
|
||||||
],
|
],
|
||||||
"area": [
|
"area": [
|
||||||
{
|
{
|
Before Width: | Height: | Size: 69 KiB After Width: | Height: | Size: 69 KiB |
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"properties": [],
|
"properties": [],
|
||||||
"tags": [
|
"tags": [
|
||||||
"cockpit_logs_notices_detail"
|
"cockpit_logs_detail"
|
||||||
],
|
],
|
||||||
"area": [
|
"area": [
|
||||||
{
|
{
|
Before Width: | Height: | Size: 53 KiB After Width: | Height: | Size: 53 KiB |
15
needles/cockpit/logs_severity-20170710.json
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"area": [
|
||||||
|
{
|
||||||
|
"type": "match",
|
||||||
|
"width": 47,
|
||||||
|
"ypos": 116,
|
||||||
|
"height": 16,
|
||||||
|
"xpos": 338
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"properties": [],
|
||||||
|
"tags": [
|
||||||
|
"cockpit_logs_severity"
|
||||||
|
]
|
||||||
|
}
|
BIN
needles/cockpit/logs_severity-20170710.png
Normal file
After Width: | Height: | Size: 48 KiB |
@ -10,6 +10,6 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"tags": [
|
"tags": [
|
||||||
"cockpit_logs_notices"
|
"cockpit_logs_severity"
|
||||||
]
|
]
|
||||||
}
|
}
|
Before Width: | Height: | Size: 56 KiB After Width: | Height: | Size: 56 KiB |
@ -11,12 +11,12 @@ sub run {
|
|||||||
assert_and_click "cockpit_logs";
|
assert_and_click "cockpit_logs";
|
||||||
# the date dropdown changes and messes with the button locations, so wait
|
# the date dropdown changes and messes with the button locations, so wait
|
||||||
wait_still_screen 2;
|
wait_still_screen 2;
|
||||||
assert_and_click "cockpit_logs_notices";
|
assert_and_click "cockpit_logs_severity";
|
||||||
wait_still_screen 2;
|
wait_still_screen 2;
|
||||||
# assume there's an entry, click it
|
# assume there's an entry, click it
|
||||||
assert_and_click "cockpit_logs_notices_entry";
|
assert_and_click "cockpit_logs_entry";
|
||||||
# check we get to the appropriate detail screen
|
# check we get to the appropriate detail screen
|
||||||
assert_screen "cockpit_logs_notices_detail";
|
assert_screen "cockpit_logs_detail";
|
||||||
# go to the services screen
|
# go to the services screen
|
||||||
assert_and_click "cockpit_services";
|
assert_and_click "cockpit_services";
|
||||||
wait_still_screen 2;
|
wait_still_screen 2;
|
||||||
|