diff --git a/samples/ldap-xml/ldap.gradle b/samples/ldap-xml/ldap.gradle index 15285a396d..ac62c14041 100644 --- a/samples/ldap-xml/ldap.gradle +++ b/samples/ldap-xml/ldap.gradle @@ -21,4 +21,6 @@ dependencies { "org.slf4j:jcl-over-slf4j:$slf4jVersion", "ch.qos.logback:logback-classic:$logbackVersion", apachedsDependencies + + integrationTestCompile gebDependencies } \ No newline at end of file diff --git a/samples/ldap-xml/src/integration-test/groovy/org/springframework/security/samples/LdapXmlTests.groovy b/samples/ldap-xml/src/integration-test/groovy/org/springframework/security/samples/LdapXmlTests.groovy new file mode 100644 index 0000000000..1f1ca32b6d --- /dev/null +++ b/samples/ldap-xml/src/integration-test/groovy/org/springframework/security/samples/LdapXmlTests.groovy @@ -0,0 +1,60 @@ +/* + * Copyright 2011 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.springframework.security.samples + +import geb.spock.* +import spock.lang.Stepwise +import org.springframework.security.samples.pages.* + +/** + * Tests the CAS sample application using service tickets. + * + * @author Rob Winch + */ +@Stepwise +class LdapXmlTests extends GebReportingSpec { + def 'access home page with unauthenticated user success'() { + when: 'Unauthenticated user accesses the Home Page' + to HomePage + then: 'The page is displayed' + at HomePage + } + + def 'access manage page with unauthenticated user sends to login page'() { + when: 'Unauthenticated user accesses the Manage Page' + secure.click(LoginPage) + then: 'The login page is displayed' + at LoginPage + } + + def 'authenticated user is sent to original page'() { + when: 'user authenticates' + login() + then: 'The secure page is displayed' + at SecurePage + } + + def 'authenticated user logs out'() { + when: 'user logs out' + logout.click() + then: 'the default logout success page is displayed' + at HomePage + when: 'Unauthenticated user accesses the Manage Page' + via SecurePage + then: 'The login page is displayed' + at LoginPage + } +} \ No newline at end of file diff --git a/samples/ldap-xml/src/integration-test/groovy/org/springframework/security/samples/pages/HomePage.groovy b/samples/ldap-xml/src/integration-test/groovy/org/springframework/security/samples/pages/HomePage.groovy new file mode 100644 index 0000000000..622b83af25 --- /dev/null +++ b/samples/ldap-xml/src/integration-test/groovy/org/springframework/security/samples/pages/HomePage.groovy @@ -0,0 +1,31 @@ +/* + * Copyright 2011 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.springframework.security.samples.pages; + +import geb.* + +/** + * The home page + * + * @author Rob Winch + */ +class HomePage extends Page { + static url = '' + static at = { assert driver.title == 'Home Page'; true} + static content = { + secure(to: [SecurePage,LoginPage]) { $('a', text: 'Secure page') } + } +} \ No newline at end of file diff --git a/samples/ldap-xml/src/integration-test/groovy/org/springframework/security/samples/pages/LoginPage.groovy b/samples/ldap-xml/src/integration-test/groovy/org/springframework/security/samples/pages/LoginPage.groovy new file mode 100644 index 0000000000..ca81fbb630 --- /dev/null +++ b/samples/ldap-xml/src/integration-test/groovy/org/springframework/security/samples/pages/LoginPage.groovy @@ -0,0 +1,37 @@ +/* + * Copyright 2011 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.springframework.security.samples.pages; + +import geb.* + +/** + * The login page. + * + * @author Rob Winch + */ +class LoginPage extends Page { + static url = 'login' + static at = { assert driver.title == 'Login Page'; true} + static content = { + login(required:false) { user='rod', password='koala' -> + loginForm.j_username = user + loginForm.j_password = password + submit.click() + } + loginForm { $('form') } + submit { $('input', type: 'submit') } + } +} \ No newline at end of file diff --git a/samples/ldap-xml/src/integration-test/groovy/org/springframework/security/samples/pages/SecurePage.groovy b/samples/ldap-xml/src/integration-test/groovy/org/springframework/security/samples/pages/SecurePage.groovy new file mode 100644 index 0000000000..315176bf17 --- /dev/null +++ b/samples/ldap-xml/src/integration-test/groovy/org/springframework/security/samples/pages/SecurePage.groovy @@ -0,0 +1,31 @@ +/* + * Copyright 2011 the original author or authors. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.springframework.security.samples.pages + +import geb.* + +/** + * The home page + * + * @author Rob Winch + */ +class SecurePage extends Page { + static url = 'secure/' + static at = { assert driver.title == 'Secure Page'; true} + static content = { + logout { $("input[type=submit]", value: "Logoff") } + } +} \ No newline at end of file diff --git a/samples/ldap-xml/src/main/webapp/index.jsp b/samples/ldap-xml/src/main/webapp/index.jsp index c815d484a3..4e98804d9d 100644 --- a/samples/ldap-xml/src/main/webapp/index.jsp +++ b/samples/ldap-xml/src/main/webapp/index.jsp @@ -1,4 +1,5 @@ +
Anyone can view this page.