POST<\/dd>/');
$this->assertWantedText('go=[Go!]');
}
function testDefaultFormValues() {
$this->get('http://www.lastcraft.com/test/form.html');
$this->assertField('a', '');
$this->assertField('b', 'Default text');
$this->assertField('c', '');
$this->assertField('d', 'd1');
$this->assertField('e', false);
$this->assertField('f', 'on');
$this->assertField('g', 'g3');
$this->assertField('h', 2);
$this->assertField('go', 'Go!');
$this->assertTrue($this->clickSubmit('Go!'));
$this->assertWantedText('go=[Go!]');
$this->assertWantedText('a=[]');
$this->assertWantedText('b=[Default text]');
$this->assertWantedText('c=[]');
$this->assertWantedText('d=[d1]');
$this->assertNoUnwantedText('e=[');
$this->assertWantedText('f=[on]');
$this->assertWantedText('g=[g3]');
}
function testFormSubmissionByLabel() {
$this->get('http://www.lastcraft.com/test/form.html');
$this->setField('a', 'aaa');
$this->setField('b', 'bbb');
$this->setField('c', 'ccc');
$this->setField('d', 'D2');
$this->setField('e', 'on');
$this->setField('f', false);
$this->setField('g', 'g2');
$this->setField('h', 1);
$this->assertTrue($this->clickSubmit('Go!'));
$this->assertWantedText('a=[aaa]');
$this->assertWantedText('b=[bbb]');
$this->assertWantedText('c=[ccc]');
$this->assertWantedText('d=[d2]');
$this->assertWantedText('e=[on]');
$this->assertNoUnwantedText('f=[');
$this->assertWantedText('g=[g2]');
}
function testAdditionalFormValues() {
$this->get('http://www.lastcraft.com/test/form.html');
$this->assertTrue($this->clickSubmit('Go!', array('add' => 'A')));
$this->assertWantedText('go=[Go!]');
$this->assertWantedText('add=[A]');
}
function testFormSubmissionByName() {
$this->get('http://www.lastcraft.com/test/form.html');
$this->assertTrue($this->clickSubmitByName('go'));
$this->assertWantedText('go=[Go!]');
}
function testFormSubmissionByNameAndadditionalParameters() {
$this->get('http://www.lastcraft.com/test/form.html');
$this->assertTrue($this->clickSubmitByName('go', array('add' => 'A')));
$this->assertWantedText('go=[Go!]');
$this->assertWantedText('add=[A]');
}
function testFormSubmissionBySubmitButtonLabeledSubmit() {
$this->get('http://www.lastcraft.com/test/form.html');
$this->assertTrue($this->clickSubmitByName('test'));
$this->assertWantedText('test=[Submit]');
}
function testFormSubmissionWithIds() {
$this->get('http://www.lastcraft.com/test/form.html');
$this->assertFieldById(1, '');
$this->assertFieldById(2, 'Default text');
$this->assertFieldById(3, '');
$this->assertFieldById(4, 'd1');
$this->assertFieldById(5, false);
$this->setFieldById(1, 'aaa');
$this->setFieldById(2, 'bbb');
$this->setFieldById(3, 'ccc');
$this->setFieldById(4, 'D2');
$this->setFieldById(5, 'on');
$this->assertTrue($this->clickSubmitById(99));
$this->assertWantedText('a=[aaa]');
$this->assertWantedText('b=[bbb]');
$this->assertWantedText('c=[ccc]');
$this->assertWantedText('d=[d2]');
$this->assertWantedText('e=[on]');
$this->assertWantedText('go=[Go!]');
}
function testImageSubmissionByLabel() {
$this->get('http://www.lastcraft.com/test/form.html');
$this->assertTrue($this->clickImage('Image go!', 10, 12));
$this->assertWantedText('go_x=[10]');
$this->assertWantedText('go_y=[12]');
}
function testImageSubmissionByLabelWithAdditionalParameters() {
$this->get('http://www.lastcraft.com/test/form.html');
$this->assertTrue($this->clickImage('Image go!', 10, 12, array('add' => 'A')));
$this->assertWantedText('add=[A]');
}
function testImageSubmissionByName() {
$this->get('http://www.lastcraft.com/test/form.html');
$this->assertTrue($this->clickImageByName('go', 10, 12));
$this->assertWantedText('go_x=[10]');
$this->assertWantedText('go_y=[12]');
}
function testImageSubmissionById() {
$this->get('http://www.lastcraft.com/test/form.html');
$this->assertTrue($this->clickImageById(97, 10, 12));
$this->assertWantedText('go_x=[10]');
$this->assertWantedText('go_y=[12]');
}
function testButtonSubmissionByLabel() {
$this->get('http://www.lastcraft.com/test/form.html');
$this->assertTrue($this->clickSubmit('Button go!', 10, 12));
$this->assertWantedPattern('/go=\[ButtonGo\]/s');
}
function testSelfSubmit() {
$this->get('http://www.lastcraft.com/test/self_form.php');
$this->assertNoUnwantedPattern('/submitted<\/p>/i');
$this->assertNoUnwantedPattern('/
wrong form<\/p>/i');
$this->assertTitle('Test of form self submission');
$this->assertTrue($this->clickSubmit());
$this->assertWantedPattern('/
submitted<\/p>/i');
$this->assertNoUnwantedPattern('/
wrong form<\/p>/i');
$this->assertTitle('Test of form self submission');
}
function testSettingOfBlankOption() {
$this->get('http://www.lastcraft.com/test/form.html');
$this->assertTrue($this->setField('d', ''));
$this->clickSubmit('Go!');
$this->assertWantedText('d=[]');
}
}
class TestOfLiveMultiValueWidgets extends WebTestCase {
function setUp() {
$this->addHeader('User-Agent: SimpleTest ' . SimpleTestOptions::getVersion());
}
function testDefaultFormValueSubmission() {
$this->get('http://www.lastcraft.com/test/multiple_widget_form.html');
$this->assertField('a', array('a2', 'a3'));
$this->assertField('b', array('b2', 'b3'));
$this->assertField('c[]', array('c2', 'c3'));
$this->assertTrue($this->clickSubmit('Go!'));
$this->assertWantedText('a=[a2, a3]');
$this->assertWantedText('b=[b2, b3]');
$this->assertWantedText('c=[c2, c3]');
}
function testSubmittingMultipleValues() {
$this->get('http://www.lastcraft.com/test/multiple_widget_form.html');
$this->setField('a', array('a1', 'a4'));
$this->assertField('a', array('a1', 'a4'));
$this->assertField('a', array('a4', 'a1'));
$this->setField('b', array('b1', 'b4'));
$this->assertField('b', array('b1', 'b4'));
$this->setField('c[]', array('c1', 'c4'));
$this->assertField('c[]', array('c1', 'c4'));
$this->assertTrue($this->clickSubmit('Go!'));
$this->assertWantedText('a=[a1, a4]');
$this->assertWantedText('b=[b1, b4]');
$this->assertWantedText('c=[c1, c4]');
}
function testSavantStyleHiddenFieldDefaults() {
$this->get('http://www.lastcraft.com/test/savant_style_form.html');
$this->assertField('a', array('a0'));
$this->assertField('b', array('b0'));
$this->assertTrue($this->clickSubmit('Go!'));
$this->assertWantedText('a=[a0]');
$this->assertWantedText('b=[b0]');
}
function testSavantStyleHiddenDefaultsAreOverridden() {
$this->get('http://www.lastcraft.com/test/savant_style_form.html');
$this->assertTrue($this->setField('a', array('a1')));
$this->assertTrue($this->setField('b', 'b1'));
$this->assertTrue($this->clickSubmit('Go!'));
$this->assertWantedText('a=[a1]');
$this->assertWantedText('b=[b1]');
}
function testSavantStyleFormSettingById() {
$this->get('http://www.lastcraft.com/test/savant_style_form.html');
$this->assertFieldById(1, array('a0'));
$this->assertFieldById(4, array('b0'));
$this->assertTrue($this->setFieldById(2, 'a1'));
$this->assertTrue($this->setFieldById(5, 'b1'));
$this->assertTrue($this->clickSubmitById(99));
$this->assertWantedText('a=[a1]');
$this->assertWantedText('b=[b1]');
}
}
class TestOfLiveHistoryNavigation extends WebTestCase {
function setUp() {
$this->addHeader('User-Agent: SimpleTest ' . SimpleTestOptions::getVersion());
}
function testRetry() {
$this->get('http://www.lastcraft.com/test/cookie_based_counter.php');
$this->assertWantedPattern('/count: 1/i');
$this->retry();
$this->assertWantedPattern('/count: 2/i');
$this->retry();
$this->assertWantedPattern('/count: 3/i');
}
function testOfBackButton() {
$this->get('http://www.lastcraft.com/test/1.html');
$this->clickLink('2');
$this->assertTitle('2');
$this->assertTrue($this->back());
$this->assertTitle('1');
$this->assertTrue($this->forward());
$this->assertTitle('2');
$this->assertFalse($this->forward());
}
function testGetRetryResubmitsData() {
$this->assertTrue($this->get(
'http://www.lastcraft.com/test/network_confirm.php?a=aaa'));
$this->assertWantedPattern('/Request method.*?
GET<\/dd>/');
$this->assertWantedText('a=[aaa]');
$this->retry();
$this->assertWantedPattern('/Request method.*?GET<\/dd>/');
$this->assertWantedText('a=[aaa]');
}
function testGetRetryResubmitsExtraData() {
$this->assertTrue($this->get(
'http://www.lastcraft.com/test/network_confirm.php',
array('a' => 'aaa')));
$this->assertWantedPattern('/Request method.*?GET<\/dd>/');
$this->assertWantedText('a=[aaa]');
$this->retry();
$this->assertWantedPattern('/Request method.*?GET<\/dd>/');
$this->assertWantedText('a=[aaa]');
}
function testPostRetryResubmitsData() {
$this->assertTrue($this->post(
'http://www.lastcraft.com/test/network_confirm.php',
array('a' => 'aaa')));
$this->assertWantedPattern('/Request method.*?POST<\/dd>/');
$this->assertWantedText('a=[aaa]');
$this->retry();
$this->assertWantedPattern('/Request method.*?POST<\/dd>/');
$this->assertWantedText('a=[aaa]');
}
function testGetRetryResubmitsRepeatedData() {
$this->assertTrue($this->get(
'http://www.lastcraft.com/test/network_confirm.php?a=1&a=2'));
$this->assertWantedPattern('/Request method.*?GET<\/dd>/');
$this->assertWantedText('a=[1, 2]');
$this->retry();
$this->assertWantedPattern('/Request method.*?GET<\/dd>/');
$this->assertWantedText('a=[1, 2]');
}
}
class TestOfLiveAuthentication extends WebTestCase {
function setUp() {
$this->addHeader('User-Agent: SimpleTest ' . SimpleTestOptions::getVersion());
}
function testChallengeFromProtectedPage() {
$this->get('http://www.lastcraft.com/test/protected/');
$this->assertResponse(401);
$this->assertAuthentication('Basic');
$this->assertRealm('SimpleTest basic authentication');
$this->authenticate('test', 'secret');
$this->assertResponse(200);
$this->retry();
$this->assertResponse(200);
}
function testEncodedAuthenticationFetchesPage() {
$this->get('http://test:secret@www.lastcraft.com/test/protected/');
$this->assertResponse(200);
}
function testRealmExtendsToWholeDirectory() {
$this->get('http://www.lastcraft.com/test/protected/1.html');
$this->authenticate('test', 'secret');
$this->clickLink('2');
$this->assertResponse(200);
$this->clickLink('3');
$this->assertResponse(200);
}
function testRedirectKeepsAuthentication() {
$this->get('http://www.lastcraft.com/test/protected/local_redirect.php');
$this->authenticate('test', 'secret');
$this->assertTitle('Simple test target file');
}
function testSessionRestartLosesAuthentication() {
$this->get('http://www.lastcraft.com/test/protected/');
$this->authenticate('test', 'secret');
$this->assertResponse(200);
$this->restart();
$this->get('http://www.lastcraft.com/test/protected/');
$this->assertResponse(401);
}
}
class TestOfLoadingFrames extends WebTestCase {
function setUp() {
$this->addHeader('User-Agent: SimpleTest ' . SimpleTestOptions::getVersion());
}
function testNoFramesContentWhenFramesDisabled() {
$this->ignoreFrames();
$this->get('http://www.lastcraft.com/test/one_page_frameset.html');
$this->assertTitle('Frameset for testing of SimpleTest');
$this->assertWantedText('This content is for no frames only');
}
function testPatternMatchCanReadTheOnlyFrame() {
$this->get('http://www.lastcraft.com/test/one_page_frameset.html');
$this->assertWantedText('A target for the SimpleTest test suite');
$this->assertNoUnwantedText('This content is for no frames only');
}
function testMessyFramesetResponsesByName() {
$this->assertTrue($this->get(
'http://www.lastcraft.com/test/messy_frameset.html'));
$this->assertTitle('Frameset for testing of SimpleTest');
$this->assertTrue($this->setFrameFocus('Front controller'));
$this->assertResponse(200);
$this->assertWantedText('Simple test front controller');
$this->assertTrue($this->setFrameFocus('One'));
$this->assertResponse(200);
$this->assertLink('2');
$this->assertTrue($this->setFrameFocus('Frame links'));
$this->assertResponse(200);
$this->assertLink('Set one to 2');
$this->assertTrue($this->setFrameFocus('Counter'));
$this->assertResponse(200);
$this->assertWantedText('Count: 1');
$this->assertTrue($this->setFrameFocus('Redirected'));
$this->assertResponse(200);
$this->assertWantedText('r=rrr');
$this->assertTrue($this->setFrameFocus('Protected'));
$this->assertResponse(401);
$this->assertTrue($this->setFrameFocus('Protected redirect'));
$this->assertResponse(401);
$this->assertTrue($this->setFrameFocusByIndex(1));
$this->assertResponse(200);
$this->assertWantedText('Simple test front controller');
$this->assertTrue($this->setFrameFocusByIndex(2));
$this->assertResponse(200);
$this->assertLink('2');
$this->assertTrue($this->setFrameFocusByIndex(3));
$this->assertResponse(200);
$this->assertLink('Set one to 2');
$this->assertTrue($this->setFrameFocusByIndex(4));
$this->assertResponse(200);
$this->assertWantedTExt('Count: 1');
$this->assertTrue($this->setFrameFocusByIndex(5));
$this->assertResponse(200);
$this->assertWantedText('r=rrr');
$this->assertTrue($this->setFrameFocusByIndex(6));
$this->assertResponse(401);
$this->assertTrue($this->setFrameFocusByIndex(7));
}
function testReloadingFramesetPage() {
$this->get('http://www.lastcraft.com/test/messy_frameset.html');
$this->assertWantedText('Count: 1');
$this->retry();
$this->assertWantedText('Count: 2');
$this->retry();
$this->assertWantedText('Count: 3');
}
function testReloadingSingleFrameWithCookieCounter() {
$this->get('http://www.lastcraft.com/test/counting_frameset.html');
$this->setFrameFocus('a');
$this->assertWantedText('Count: 1');
$this->setFrameFocus('b');
$this->assertWantedText('Count: 2');
$this->setFrameFocus('a');
$this->retry();
$this->assertWantedText('Count: 3');
$this->retry();
$this->assertWantedText('Count: 4');
$this->setFrameFocus('b');
$this->assertWantedText('Count: 2');
}
function testReloadingFrameWhenUnfocusedReloadsWholeFrameset() {
$this->get('http://www.lastcraft.com/test/counting_frameset.html');
$this->setFrameFocus('a');
$this->assertWantedText('Count: 1');
$this->setFrameFocus('b');
$this->assertWantedText('Count: 2');
$this->clearFrameFocus('a');
$this->retry();
$this->assertTitle('Frameset for testing of SimpleTest');
$this->setFrameFocus('a');
$this->assertWantedText('Count: 3');
$this->setFrameFocus('b');
$this->assertWantedText('Count: 4');
}
function testClickingNormalLinkReplacesJustThatFrame() {
$this->get('http://www.lastcraft.com/test/messy_frameset.html');
$this->clickLink('2');
$this->assertLink('3');
$this->assertWantedText('Simple test front controller');
}
function testJumpToNamedPageReplacesJustThatFrame() {
$this->get('http://www.lastcraft.com/test/messy_frameset.html');
$this->assertWantedPattern('/Simple test front controller/');
$this->clickLink('Index');
$this->assertResponse(200);
$this->assertWantedText('[action=index]');
$this->assertWantedText('Count: 1');
}
function testJumpToUnnamedPageReplacesJustThatFrame() {
$this->get('http://www.lastcraft.com/test/messy_frameset.html');
$this->clickLink('No page');
$this->assertResponse(200);
$this->assertWantedText('Simple test front controller');
$this->assertWantedText('[action=no_page]');
$this->assertWantedText('Count: 1');
}
function testJumpToUnnamedPageWithBareParameterReplacesJustThatFrame() {
$this->get('http://www.lastcraft.com/test/messy_frameset.html');
$this->clickLink('Bare action');
$this->assertResponse(200);
$this->assertWantedText('Simple test front controller');
$this->assertWantedText('[action=]');
$this->assertWantedText('Count: 1');
}
function testJumpToUnnamedPageWithEmptyQueryReplacesJustThatFrame() {
$this->get('http://www.lastcraft.com/test/messy_frameset.html');
$this->clickLink('Empty query');
$this->assertResponse(200);
$this->assertWantedPattern('/Simple test front controller/');
$this->assertWantedPattern('/raw get data.*?\[\].*?get data/si');
$this->assertWantedPattern('/Count: 1/');
}
function testJumpToUnnamedPageWithEmptyLinkReplacesJustThatFrame() {
$this->get('http://www.lastcraft.com/test/messy_frameset.html');
$this->clickLink('Empty link');
$this->assertResponse(200);
$this->assertWantedPattern('/Simple test front controller/');
$this->assertWantedPattern('/raw get data.*?\[\].*?get data/si');
$this->assertWantedPattern('/Count: 1/');
}
function testJumpBackADirectoryLevelReplacesJustThatFrame() {
$this->get('http://www.lastcraft.com/test/messy_frameset.html');
$this->clickLink('Down one');
$this->assertWantedPattern('/index of \/test/i');
$this->assertWantedPattern('/Count: 1/');
}
function testSubmitToNamedPageReplacesJustThatFrame() {
$this->get('http://www.lastcraft.com/test/messy_frameset.html');
$this->assertWantedPattern('/Simple test front controller/');
$this->clickSubmit('Index');
$this->assertResponse(200);
$this->assertWantedText('[action=Index]');
$this->assertWantedText('Count: 1');
}
function testSubmitToSameDirectoryReplacesJustThatFrame() {
$this->get('http://www.lastcraft.com/test/messy_frameset.html');
$this->clickSubmit('Same directory');
$this->assertResponse(200);
$this->assertWantedText('[action=Same+directory]');
$this->assertWantedText('Count: 1');
}
function testSubmitToEmptyActionReplacesJustThatFrame() {
$this->get('http://www.lastcraft.com/test/messy_frameset.html');
$this->clickSubmit('Empty action');
$this->assertResponse(200);
$this->assertWantedText('[action=Empty+action]');
$this->assertWantedText('Count: 1');
}
function testSubmitToNoActionReplacesJustThatFrame() {
$this->get('http://www.lastcraft.com/test/messy_frameset.html');
$this->clickSubmit('No action');
$this->assertResponse(200);
$this->assertWantedText('[action=No+action]');
$this->assertWantedText('Count: 1');
}
function testSubmitBackADirectoryLevelReplacesJustThatFrame() {
$this->get('http://www.lastcraft.com/test/messy_frameset.html');
$this->clickSubmit('Down one');
$this->assertWantedPattern('/index of \/test/i');
$this->assertWantedPattern('/Count: 1/');
}
function testTopLinkExitsFrameset() {
$this->get('http://www.lastcraft.com/test/messy_frameset.html');
$this->clickLink('Exit the frameset');
$this->assertTitle('Simple test target file');
}
function testLinkInOnePageCanLoadAnother() {
$this->get('http://www.lastcraft.com/test/messy_frameset.html');
$this->assertNoLink('3');
$this->clickLink('Set one to 2');
$this->assertLink('3');
$this->assertNoLink('2');
$this->assertTitle('Frameset for testing of SimpleTest');
}
}
class TestOfFrameAuthentication extends WebTestCase {
function testUnauthenticatedFrameSendsChallenge() {
$this->get('http://www.lastcraft.com/test/protected/');
$this->setFrameFocus('Protected');
$this->assertAuthentication('Basic');
$this->assertRealm('SimpleTest basic authentication');
$this->assertResponse(401);
}
function testCanReadFrameFromAlreadyAuthenticatedRealm() {
$this->get('http://www.lastcraft.com/test/protected/');
$this->authenticate('test', 'secret');
$this->get('http://www.lastcraft.com/test/messy_frameset.html');
$this->setFrameFocus('Protected');
$this->assertResponse(200);
$this->assertWantedText('A target for the SimpleTest test suite');
}
function testCanAuthenticateFrame() {
$this->get('http://www.lastcraft.com/test/messy_frameset.html');
$this->setFrameFocus('Protected');
$this->authenticate('test', 'secret');
$this->assertResponse(200);
$this->assertWantedText('A target for the SimpleTest test suite');
$this->clearFrameFocus();
$this->assertWantedText('Count: 1');
}
function testCanAuthenticateRedirectedFrame() {
$this->get('http://www.lastcraft.com/test/messy_frameset.html');
$this->setFrameFocus('Protected redirect');
$this->assertResponse(401);
$this->authenticate('test', 'secret');
$this->assertResponse(200);
$this->assertWantedText('A target for the SimpleTest test suite');
$this->clearFrameFocus();
$this->assertWantedText('Count: 1');
}
}
class TestOfNestedFrames extends WebTestCase {
function testCanNavigateToSpecificContent() {
$this->get('http://www.lastcraft.com/test/nested_frameset.html');
$this->assertTitle('Nested frameset for testing of SimpleTest');
$this->assertWantedPattern('/This is frame A/');
$this->assertWantedPattern('/This is frame B/');
$this->assertWantedPattern('/Simple test front controller/');
$this->assertLink('2');
$this->assertLink('Set one to 2');
$this->assertWantedPattern('/Count: 1/');
$this->assertWantedPattern('/r=rrr/');
$this->setFrameFocus('pair');
$this->assertWantedPattern('/This is frame A/');
$this->assertWantedPattern('/This is frame B/');
$this->assertNoUnwantedPattern('/Simple test front controller/');
$this->assertNoLink('2');
$this->setFrameFocus('aaa');
$this->assertWantedPattern('/This is frame A/');
$this->assertNoUnwantedPattern('/This is frame B/');
$this->clearFrameFocus();
$this->assertResponse(200);
$this->setFrameFocus('messy');
$this->assertResponse(200);
$this->setFrameFocus('Front controller');
$this->assertResponse(200);
$this->assertWantedPattern('/Simple test front controller/');
$this->assertNoLink('2');
}
function testReloadingFramesetPage() {
$this->get('http://www.lastcraft.com/test/nested_frameset.html');
$this->assertWantedPattern('/Count: 1/');
$this->retry();
$this->assertWantedPattern('/Count: 2/');
$this->retry();
$this->assertWantedPattern('/Count: 3/');
}
function testRetryingNestedPageOnlyRetriesThatSet() {
$this->get('http://www.lastcraft.com/test/nested_frameset.html');
$this->assertWantedPattern('/Count: 1/');
$this->setFrameFocus('messy');
$this->retry();
$this->assertWantedPattern('/Count: 2/');
$this->setFrameFocus('Counter');
$this->retry();
$this->assertWantedPattern('/Count: 3/');
$this->clearFrameFocus();
$this->setFrameFocus('messy');
$this->setFrameFocus('Front controller');
$this->retry();
$this->clearFrameFocus();
$this->assertWantedPattern('/Count: 3/');
}
function testAuthenticatingNestedPage() {
$this->get('http://www.lastcraft.com/test/nested_frameset.html');
$this->setFrameFocus('messy');
$this->setFrameFocus('Protected');
$this->assertAuthentication('Basic');
$this->assertRealm('SimpleTest basic authentication');
$this->assertResponse(401);
$this->authenticate('test', 'secret');
$this->assertResponse(200);
$this->assertWantedPattern('/A target for the SimpleTest test suite/');
}
}
?>