blob: 47a1f583d5288c6336ce055ebcaddcc1aef7f4c5 [file] [log] [blame]
/*
* 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 geb.testng
import geb.Page
import geb.test.CallbackHttpServer
import org.testng.annotations.AfterMethod
import org.testng.annotations.BeforeMethod
import org.testng.annotations.Test
class GebTestTest extends GebTest {
def server = new CallbackHttpServer(browser.config)
@BeforeMethod
void setUp() {
server.start()
server.get = { req, res ->
res.outputStream << """
<html>
<body>
<div class="d1" id="d1">d1</div>
</body>
</html>"""
}
browser.baseUrl = server.baseUrl
}
@Test
void missingMethodsAreInvokedOnTheDriverInstance() {
// This also verifies that the driver instance is instantiated correctly
go("/")
}
@Test
void missingPropertyAccessesAreRequestedOnTheDriverInstance() {
page SomePage
assert prop == 1
}
@Test
void missingPropertyAssignmentsAreForwardedToTheDriverInstance() {
page SomePage
prop = 2
assert prop == 2
}
@AfterMethod
void tearDown() {
server.stop()
}
}
class SomePage extends Page {
def prop = 1
}