Gitweb links:
...log
http://git.netsurf-browser.org/netsurf-test.git/shortlog/5007f8a278222e3b9dddc58f6890e2f6f11f6f69
...commit
http://git.netsurf-browser.org/netsurf-test.git/commit/5007f8a278222e3b9dddc58f6890e2f6f11f6f69
...tree
http://git.netsurf-browser.org/netsurf-test.git/tree/5007f8a278222e3b9dddc58f6890e2f6f11f6f69
The branch, master has been updated
via 5007f8a278222e3b9dddc58f6890e2f6f11f6f69 (commit)
from f0dde8c1223fa9cdffcfb44c6a3654d0940e00e0 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commitdiff
http://git.netsurf-browser.org/netsurf-test.git/commit/?id=5007f8a278222e3b9dddc58f6890e2f6f11f6f69
commit 5007f8a278222e3b9dddc58f6890e2f6f11f6f69
Author: Michael Drake <[email protected]>
Commit: Michael Drake <[email protected]>
tests: Add standalone image tests.
diff --git a/monkey-test/load-image-bmp.yaml b/monkey-test/load-image-bmp.yaml
new file mode 100644
index 0000000..f204049
--- /dev/null
+++ b/monkey-test/load-image-bmp.yaml
@@ -0,0 +1,21 @@
+title: load a bmp file
+group: basic
+steps:
+- action: launch
+ language: en
+- action: window-new
+ tag: win1
+- action: navigate
+ window: win1
+ url:
https://test.netsurf-browser.org/cgi-bin/image.cgi?format=bmp&width=40&height=30
+- action: block
+ conditions:
+ - window: win1
+ status: complete
+- action: plot-check
+ window: win1
+ checks:
+ - bitmap-count: 1
+- action: window-close
+ window: win1
+- action: quit
\ No newline at end of file
diff --git a/monkey-test/load-image-gif.yaml b/monkey-test/load-image-gif.yaml
new file mode 100644
index 0000000..d84e8ad
--- /dev/null
+++ b/monkey-test/load-image-gif.yaml
@@ -0,0 +1,21 @@
+title: load a gif file
+group: basic
+steps:
+- action: launch
+ language: en
+- action: window-new
+ tag: win1
+- action: navigate
+ window: win1
+ url:
https://test.netsurf-browser.org/cgi-bin/image.cgi?format=gif&width=40&height=30
+- action: block
+ conditions:
+ - window: win1
+ status: complete
+- action: plot-check
+ window: win1
+ checks:
+ - bitmap-count: 1
+- action: window-close
+ window: win1
+- action: quit
\ No newline at end of file
diff --git a/monkey-test/load-image-ico.yaml b/monkey-test/load-image-ico.yaml
new file mode 100644
index 0000000..460b402
--- /dev/null
+++ b/monkey-test/load-image-ico.yaml
@@ -0,0 +1,21 @@
+title: load a bmp file
+group: basic
+steps:
+- action: launch
+ language: en
+- action: window-new
+ tag: win1
+- action: navigate
+ window: win1
+ url:
https://test.netsurf-browser.org/cgi-bin/image.cgi?format=ico&width=40&height=30
+- action: block
+ conditions:
+ - window: win1
+ status: complete
+- action: plot-check
+ window: win1
+ checks:
+ - bitmap-count: 1
+- action: window-close
+ window: win1
+- action: quit
\ No newline at end of file
diff --git a/monkey-test/load-image-jpeg.yaml b/monkey-test/load-image-jpeg.yaml
new file mode 100644
index 0000000..8e405d3
--- /dev/null
+++ b/monkey-test/load-image-jpeg.yaml
@@ -0,0 +1,21 @@
+title: load a jpeg file
+group: basic
+steps:
+- action: launch
+ language: en
+- action: window-new
+ tag: win1
+- action: navigate
+ window: win1
+ url:
https://test.netsurf-browser.org/cgi-bin/image.cgi?format=jpeg&width=40&height=30
+- action: block
+ conditions:
+ - window: win1
+ status: complete
+- action: plot-check
+ window: win1
+ checks:
+ - bitmap-count: 1
+- action: window-close
+ window: win1
+- action: quit
\ No newline at end of file
diff --git a/monkey-test/load-image-png.yaml b/monkey-test/load-image-png.yaml
new file mode 100644
index 0000000..5089c77
--- /dev/null
+++ b/monkey-test/load-image-png.yaml
@@ -0,0 +1,21 @@
+title: load a png file
+group: basic
+steps:
+- action: launch
+ language: en
+- action: window-new
+ tag: win1
+- action: navigate
+ window: win1
+ url:
https://test.netsurf-browser.org/cgi-bin/image.cgi?format=png&width=40&height=30
+- action: block
+ conditions:
+ - window: win1
+ status: complete
+- action: plot-check
+ window: win1
+ checks:
+ - bitmap-count: 1
+- action: window-close
+ window: win1
+- action: quit
\ No newline at end of file
diff --git a/monkey-test/load-png.yaml b/monkey-test/load-png.yaml
deleted file mode 100644
index e850e55..0000000
--- a/monkey-test/load-png.yaml
+++ /dev/null
@@ -1,28 +0,0 @@
-title: load a png file
-group: basic
-steps:
-- action: launch
- language: en
-- action: window-new
- tag: win1
-- action: navigate
- window: win1
- url:
https://test.netsurf-browser.org/cgi-bin/image.cgi?format=png&width=40&height=30
-- action: block
- conditions:
- - window: win1
- status: complete
-- action: plot-check
- window: win1
- checks:
- - bitmap-count: 1
-- action: navigate
- window: win1
- url: resource:netsurf.png
-- action: block
- conditions:
- - window: win1
- status: complete
-- action: window-close
- window: win1
-- action: quit
\ No newline at end of file
-----------------------------------------------------------------------
Summary of changes:
monkey-test/{load-png.yaml => load-image-bmp.yaml} | 11 ++---------
monkey-test/{load-png.yaml => load-image-gif.yaml} | 11 ++---------
monkey-test/{load-png.yaml => load-image-ico.yaml} | 11 ++---------
monkey-test/{load-png.yaml => load-image-jpeg.yaml} | 11 ++---------
monkey-test/{load-png.yaml => load-image-png.yaml} | 7 -------
5 files changed, 8 insertions(+), 43 deletions(-)
copy monkey-test/{load-png.yaml => load-image-bmp.yaml} (65%)
copy monkey-test/{load-png.yaml => load-image-gif.yaml} (65%)
copy monkey-test/{load-png.yaml => load-image-ico.yaml} (65%)
copy monkey-test/{load-png.yaml => load-image-jpeg.yaml} (65%)
rename monkey-test/{load-png.yaml => load-image-png.yaml} (73%)
diff --git a/monkey-test/load-png.yaml b/monkey-test/load-image-bmp.yaml
similarity index 65%
copy from monkey-test/load-png.yaml
copy to monkey-test/load-image-bmp.yaml
index e850e55..f204049 100644
--- a/monkey-test/load-png.yaml
+++ b/monkey-test/load-image-bmp.yaml
@@ -1,4 +1,4 @@
-title: load a png file
+title: load a bmp file
group: basic
steps:
- action: launch
@@ -7,7 +7,7 @@ steps:
tag: win1
- action: navigate
window: win1
- url:
https://test.netsurf-browser.org/cgi-bin/image.cgi?format=png&width=40&height=30
+ url:
https://test.netsurf-browser.org/cgi-bin/image.cgi?format=bmp&width=40&height=30
- action: block
conditions:
- window: win1
@@ -16,13 +16,6 @@ steps:
window: win1
checks:
- bitmap-count: 1
-- action: navigate
- window: win1
- url: resource:netsurf.png
-- action: block
- conditions:
- - window: win1
- status: complete
- action: window-close
window: win1
- action: quit
\ No newline at end of file
diff --git a/monkey-test/load-png.yaml b/monkey-test/load-image-gif.yaml
similarity index 65%
copy from monkey-test/load-png.yaml
copy to monkey-test/load-image-gif.yaml
index e850e55..d84e8ad 100644
--- a/monkey-test/load-png.yaml
+++ b/monkey-test/load-image-gif.yaml
@@ -1,4 +1,4 @@
-title: load a png file
+title: load a gif file
group: basic
steps:
- action: launch
@@ -7,7 +7,7 @@ steps:
tag: win1
- action: navigate
window: win1
- url:
https://test.netsurf-browser.org/cgi-bin/image.cgi?format=png&width=40&height=30
+ url:
https://test.netsurf-browser.org/cgi-bin/image.cgi?format=gif&width=40&height=30
- action: block
conditions:
- window: win1
@@ -16,13 +16,6 @@ steps:
window: win1
checks:
- bitmap-count: 1
-- action: navigate
- window: win1
- url: resource:netsurf.png
-- action: block
- conditions:
- - window: win1
- status: complete
- action: window-close
window: win1
- action: quit
\ No newline at end of file
diff --git a/monkey-test/load-png.yaml b/monkey-test/load-image-ico.yaml
similarity index 65%
copy from monkey-test/load-png.yaml
copy to monkey-test/load-image-ico.yaml
index e850e55..460b402 100644
--- a/monkey-test/load-png.yaml
+++ b/monkey-test/load-image-ico.yaml
@@ -1,4 +1,4 @@
-title: load a png file
+title: load a bmp file
group: basic
steps:
- action: launch
@@ -7,7 +7,7 @@ steps:
tag: win1
- action: navigate
window: win1
- url:
https://test.netsurf-browser.org/cgi-bin/image.cgi?format=png&width=40&height=30
+ url:
https://test.netsurf-browser.org/cgi-bin/image.cgi?format=ico&width=40&height=30
- action: block
conditions:
- window: win1
@@ -16,13 +16,6 @@ steps:
window: win1
checks:
- bitmap-count: 1
-- action: navigate
- window: win1
- url: resource:netsurf.png
-- action: block
- conditions:
- - window: win1
- status: complete
- action: window-close
window: win1
- action: quit
\ No newline at end of file
diff --git a/monkey-test/load-png.yaml b/monkey-test/load-image-jpeg.yaml
similarity index 65%
copy from monkey-test/load-png.yaml
copy to monkey-test/load-image-jpeg.yaml
index e850e55..8e405d3 100644
--- a/monkey-test/load-png.yaml
+++ b/monkey-test/load-image-jpeg.yaml
@@ -1,4 +1,4 @@
-title: load a png file
+title: load a jpeg file
group: basic
steps:
- action: launch
@@ -7,7 +7,7 @@ steps:
tag: win1
- action: navigate
window: win1
- url:
https://test.netsurf-browser.org/cgi-bin/image.cgi?format=png&width=40&height=30
+ url:
https://test.netsurf-browser.org/cgi-bin/image.cgi?format=jpeg&width=40&height=30
- action: block
conditions:
- window: win1
@@ -16,13 +16,6 @@ steps:
window: win1
checks:
- bitmap-count: 1
-- action: navigate
- window: win1
- url: resource:netsurf.png
-- action: block
- conditions:
- - window: win1
- status: complete
- action: window-close
window: win1
- action: quit
\ No newline at end of file
diff --git a/monkey-test/load-png.yaml b/monkey-test/load-image-png.yaml
similarity index 73%
rename from monkey-test/load-png.yaml
rename to monkey-test/load-image-png.yaml
index e850e55..5089c77 100644
--- a/monkey-test/load-png.yaml
+++ b/monkey-test/load-image-png.yaml
@@ -16,13 +16,6 @@ steps:
window: win1
checks:
- bitmap-count: 1
-- action: navigate
- window: win1
- url: resource:netsurf.png
-- action: block
- conditions:
- - window: win1
- status: complete
- action: window-close
window: win1
- action: quit
\ No newline at end of file
--
NetSurf test cases
_______________________________________________
netsurf-commits mailing list
[email protected]
http://listmaster.pepperfish.net/cgi-bin/mailman/listinfo/netsurf-commits-netsurf-browser.org