-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
467 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
Feature('500 error handling'); | ||
|
||
//region 500 page | ||
Scenario('Renders 500 page', (I, common: common) => { | ||
I.amOnPage(common.url.urlInternalServerError); | ||
I.seeInSource(common.textError500); | ||
I.seeInSource(common.textErrorId); | ||
I.dontSeeInSource(common.textError500ForLocalhostAsIPv4); | ||
I.seeInCurrentUrl(common.url.urlInternalServerError); | ||
}); | ||
Scenario('should open 500 error page when an error happens', async (I, newsPage: newsPage, common: common) => { | ||
I.amOnPage(newsPage.url.main); | ||
I.waitInUrl(newsPage.url.main, 10); | ||
I.waitForElement(newsPage.generateError, 10); | ||
I.click(newsPage.generateError); | ||
I.seeInSource(common.textError500); | ||
I.seeInSource(common.textErrorId); | ||
I.dontSeeInSource(common.textError500ForLocalhostAsIPv4); | ||
I.seeInCurrentUrl(newsPage.url.main); | ||
}); | ||
|
||
Scenario('Renders 500 page for domain 127.0.0.1', (I, common: common) => { | ||
I.amOnPage(common.url.localhostAsIPv4 + common.url.urlInternalServerError); | ||
I.seeInSource(common.textError500ForLocalhostAsIPv4); | ||
I.seeInSource(common.textErrorId); | ||
I.dontSeeInSource(common.textError500); | ||
I.seeInCurrentUrl(common.url.localhostAsIPv4 + common.url.urlInternalServerError); | ||
}); | ||
Scenario('should open 500 error page when an error happens for domain 127.0.0.1', async (I, newsPage: newsPage, common: common) => { | ||
I.amOnPage(common.url.localhostAsIPv4 + newsPage.url.main); | ||
I.waitInUrl(newsPage.url.main, 10); | ||
I.waitForElement(newsPage.generateError, 10); | ||
I.click(newsPage.generateError); | ||
I.seeInSource(common.textError500ForLocalhostAsIPv4); | ||
I.seeInSource(common.textErrorId); | ||
I.dontSeeInSource(common.textError500); | ||
I.seeInCurrentUrl(common.url.localhostAsIPv4 + newsPage.url.main); | ||
}); | ||
//endregion 500 page |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
export const url = { | ||
urlInternalServerError: '/_ilc/500', | ||
localhostAsIPv4: 'http://127.0.0.1:8233', | ||
}; | ||
|
||
export const textError500 = '<h3>ERROR 500</h3>'; | ||
export const textError500ForLocalhostAsIPv4 = '<h3>500 Internal Server Error on 127.0.0.1</h3>'; | ||
export const textErrorId = 'Error ID:'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import * as Knex from 'knex'; | ||
|
||
export async function seed(knex: Knex): Promise<any> { | ||
return knex("router_domains").insert([ | ||
{ | ||
id: 1, | ||
domainName: '127.0.0.1:8233', | ||
template500: '500ForLocalhostAsIPv4', | ||
}, | ||
]); | ||
} |
Oops, something went wrong.