mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-06-23 04:22:17 +00:00
SEC-2637: Add Geb integration tests for ldap-xml
This commit is contained in:
parent
19ce54e4ff
commit
6b121c7543
@ -21,4 +21,6 @@ dependencies {
|
|||||||
"org.slf4j:jcl-over-slf4j:$slf4jVersion",
|
"org.slf4j:jcl-over-slf4j:$slf4jVersion",
|
||||||
"ch.qos.logback:logback-classic:$logbackVersion",
|
"ch.qos.logback:logback-classic:$logbackVersion",
|
||||||
apachedsDependencies
|
apachedsDependencies
|
||||||
|
|
||||||
|
integrationTestCompile gebDependencies
|
||||||
}
|
}
|
@ -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
|
||||||
|
}
|
||||||
|
}
|
@ -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') }
|
||||||
|
}
|
||||||
|
}
|
@ -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') }
|
||||||
|
}
|
||||||
|
}
|
@ -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") }
|
||||||
|
}
|
||||||
|
}
|
@ -1,4 +1,5 @@
|
|||||||
<html>
|
<html>
|
||||||
|
<head><title>Home Page</title></head>
|
||||||
<body>
|
<body>
|
||||||
<h1>Home Page</h1>
|
<h1>Home Page</h1>
|
||||||
<p>Anyone can view this page.</p>
|
<p>Anyone can view this page.</p>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user