diff --git a/samples/tutorial/exec-list-as-peter b/samples/tutorial/exec-list-as-peter new file mode 100755 index 0000000000..04e85f122f --- /dev/null +++ b/samples/tutorial/exec-list-as-peter @@ -0,0 +1,5 @@ +#!/bin/bash +rm -rf work +mkdir work +wget --http-user=peter --http-password=opal --directory-prefix=work --output-file=work/log.txt http://localhost:8080/spring-security-samples-tutorial/listAccounts.html +cat -n work/* | less diff --git a/samples/tutorial/exec-list-as-rod b/samples/tutorial/exec-list-as-rod new file mode 100755 index 0000000000..84d5549cee --- /dev/null +++ b/samples/tutorial/exec-list-as-rod @@ -0,0 +1,5 @@ +#!/bin/bash +rm -rf work +mkdir work +wget --http-user=rod --http-password=koala --directory-prefix=work --output-file=work/log.txt http://localhost:8080/spring-security-samples-tutorial/listAccounts.html +cat -n work/* | less diff --git a/samples/tutorial/exec-list-no-auth b/samples/tutorial/exec-list-no-auth new file mode 100755 index 0000000000..343bcfcf6c --- /dev/null +++ b/samples/tutorial/exec-list-no-auth @@ -0,0 +1,5 @@ +#!/bin/bash +rm -rf work +mkdir work +wget --directory-prefix=work --output-file=work/log.txt http://localhost:8080/spring-security-samples-tutorial/listAccounts.html +cat -n work/* | less diff --git a/samples/tutorial/exec-list-wrong-password b/samples/tutorial/exec-list-wrong-password new file mode 100755 index 0000000000..426f98db57 --- /dev/null +++ b/samples/tutorial/exec-list-wrong-password @@ -0,0 +1,5 @@ +#!/bin/bash +rm -rf work +mkdir work +wget --http-user=rod --http-password=WRONG-PASSWORD --directory-prefix=work --output-file=work/log.txt http://localhost:8080/spring-security-samples-tutorial/listAccounts.html +cat -n work/* | less diff --git a/samples/tutorial/exec-post-as-peter b/samples/tutorial/exec-post-as-peter new file mode 100755 index 0000000000..ab4b7f03b3 --- /dev/null +++ b/samples/tutorial/exec-post-as-peter @@ -0,0 +1,5 @@ +#!/bin/bash +rm -rf work +mkdir work +wget --http-user=peter --http-password=opal --directory-prefix=work --output-file=work/log.txt http://localhost:8080/spring-security-samples-tutorial/post.html?id=1\&amount=5.00 +cat -n work/* | less diff --git a/samples/tutorial/exec-post-as-rod b/samples/tutorial/exec-post-as-rod new file mode 100755 index 0000000000..7a9ce7f379 --- /dev/null +++ b/samples/tutorial/exec-post-as-rod @@ -0,0 +1,5 @@ +#!/bin/bash +rm -rf work +mkdir work +wget --http-user=rod --http-password=koala --directory-prefix=work --output-file=work/log.txt http://localhost:8080/spring-security-samples-tutorial/post.html?id=1\&amount=5.00 +cat -n work/* | less diff --git a/samples/tutorial/exec-post-no-auth b/samples/tutorial/exec-post-no-auth new file mode 100755 index 0000000000..7b702cb0a2 --- /dev/null +++ b/samples/tutorial/exec-post-no-auth @@ -0,0 +1,5 @@ +#!/bin/bash +rm -rf work +mkdir work +wget --directory-prefix=work --output-file=work/log.txt http://localhost:8080/spring-security-samples-tutorial/post.html?id=1\&amount=5.00 +cat -n work/* | less diff --git a/samples/tutorial/exec-post-wrong-password b/samples/tutorial/exec-post-wrong-password new file mode 100755 index 0000000000..17b64aa095 --- /dev/null +++ b/samples/tutorial/exec-post-wrong-password @@ -0,0 +1,5 @@ +#!/bin/bash +rm -rf work +mkdir work +wget --http-user=rod --http-password=WRONG_PASSWORD --directory-prefix=work --output-file=work/log.txt http://localhost:8080/spring-security-samples-tutorial/post.html?id=1\&amount=5.00 +cat -n work/* | less