From 9ef04bd727252aee9dc6e074303f5a2aefb893e3 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Sat, 30 Nov 2019 18:33:29 +0000 Subject: change how divisions are implemented This allows tests to be limited to appear only in a single division reducing how many test files must be parsed for all divisions. --- .../short-internet/https-badssl-brokencrypto.yaml | 97 ++++++++++++++++++++++ 1 file changed, 97 insertions(+) create mode 100644 monkey-test/short-internet/https-badssl-brokencrypto.yaml (limited to 'monkey-test/short-internet/https-badssl-brokencrypto.yaml') diff --git a/monkey-test/short-internet/https-badssl-brokencrypto.yaml b/monkey-test/short-internet/https-badssl-brokencrypto.yaml new file mode 100644 index 0000000..c0ff2b6 --- /dev/null +++ b/monkey-test/short-internet/https-badssl-brokencrypto.yaml @@ -0,0 +1,97 @@ +title: Test https broken cryptography functionality with badssl.com +group: https +steps: +- action: launch + language: en +- action: window-new + tag: win1 +- action: navigate + window: win1 + url: https://badssl.com/ +- action: block + conditions: + - window: win1 + status: complete +- action: plot-check + window: win1 + checks: + - text-contains: "badssl.com" + +# the sha1-intermediate failure to navigate test passes so is ommited + +- action: navigate + window: win1 + url: https://rc4.badssl.com/ +- action: block + conditions: + - window: win1 + status: complete +- action: plot-check + window: win1 + checks: + - text-not-contains: "rc4. badssl.com" + +- action: navigate + window: win1 + url: https://rc4-md5.badssl.com/ +- action: block + conditions: + - window: win1 + status: complete +- action: plot-check + window: win1 + checks: + - text-not-contains: "rc4-md5. badssl.com" + +- action: navigate + window: win1 + url: https://dh480.badssl.com/ +- action: block + conditions: + - window: win1 + status: complete +- action: plot-check + window: win1 + checks: + - text-not-contains: "dh480. badssl.com" + +- action: navigate + window: win1 + url: https://dh512.badssl.com/ +- action: block + conditions: + - window: win1 + status: complete +- action: plot-check + window: win1 + checks: + - text-not-contains: "dh512. badssl.com" + +- action: navigate + window: win1 + url: https://dh1024.badssl.com/ +- action: block + conditions: + - window: win1 + status: complete +- action: plot-check + window: win1 + checks: + - text-not-contains: "dh1024. badssl.com" + +- action: navigate + window: win1 + url: https://null.badssl.com/ +- action: block + conditions: + - window: win1 + status: complete +- action: plot-check + window: win1 + checks: + - text-not-contains: "null. badssl.com" + +- action: window-close + window: win1 +- action: quit + -- cgit v1.2.3