-
Notifications
You must be signed in to change notification settings - Fork 46
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: support a few domains (500) #283
Merged
nightnei
merged 2 commits into
feature/supportFewDomains_master
from
feature/supportFewDomains_500
Apr 20, 2021
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 for domain "localhost:8233" (default)', (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 for domain "localhost:8233" (default)', 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:8233"', (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:8233"', 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,13 +6,14 @@ errors.WrapWithCacheError = extendError('WrapWithCacheError'); | |
const wrapWithCache = (localStorage, logger, createHash = hashFn) => (fn, cacheParams = {}) => { | ||
const { | ||
cacheForSeconds = 60, | ||
name = '', // "hash" of returned value is based only on arguments, so with the help "name" we can add prefix to hash | ||
} = cacheParams; | ||
|
||
const cacheResolutionPromise = {}; | ||
|
||
return (...args) => { | ||
const now = Math.floor(Date.now() / 1000); | ||
const hash = args.length > 0 ? createHash(JSON.stringify(args)) : '__null__'; | ||
const hash = `${name ? name + '__' : ''}${args.length > 0 ? createHash(JSON.stringify(args)) : '__null__'}`; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Pass name to hash function. Don't do a concatenation after There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. So now we would use hash fn even if we don't have args |
||
|
||
if (localStorage.getItem(hash) === null || JSON.parse(localStorage.getItem(hash)).cachedAt < now - cacheForSeconds) { | ||
if (cacheResolutionPromise[hash] !== undefined) { | ||
|
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
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 |
---|---|---|
@@ -1,18 +1,24 @@ | ||
import Joi from 'joi'; | ||
import { templateNameSchema } from '../../templates/interfaces'; | ||
|
||
export default interface RouterDomains { | ||
id: number, | ||
domainName: string, | ||
template500?: string, | ||
}; | ||
|
||
export const routerDomainIdSchema = Joi.string().trim().required(); | ||
|
||
const routerDomainNameSchema = Joi.string().trim().min(1); | ||
const commonRouterDomainsSchema = { | ||
domainName: Joi.string().trim().min(1), | ||
template500: templateNameSchema.allow(null), | ||
}; | ||
|
||
export const partialRouterDomainsSchema = Joi.object({ | ||
domainName: routerDomainNameSchema, | ||
...commonRouterDomainsSchema, | ||
}); | ||
|
||
export const routerDomainsSchema = Joi.object({ | ||
domainName: routerDomainNameSchema.required(), | ||
...commonRouterDomainsSchema, | ||
domainName: commonRouterDomainsSchema.domainName.required(), | ||
}); |
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 |
---|---|---|
@@ -1,17 +1,19 @@ | ||
import express from 'express'; | ||
import express, { RequestHandler } from 'express'; | ||
|
||
import getRouterDomains from './getRouterDomains'; | ||
import getAllRouterDomains from './getAllRouterDomains'; | ||
import updateRouterDomains from './updateRouterDomains'; | ||
import createRouterDomains from './createRouterDomains'; | ||
import deleteRouterDomains from './deleteRouterDomains'; | ||
|
||
const routerDomainsRouter = express.Router(); | ||
export default (authMw: RequestHandler) => { | ||
const routerDomainsRouter = express.Router(); | ||
|
||
routerDomainsRouter.get('/', ...getAllRouterDomains); | ||
routerDomainsRouter.post('/', ...createRouterDomains); | ||
routerDomainsRouter.get('/:id', ...getRouterDomains); | ||
routerDomainsRouter.put('/:id', ...updateRouterDomains); | ||
routerDomainsRouter.delete('/:id', ...deleteRouterDomains); | ||
routerDomainsRouter.get('/', ...getAllRouterDomains); | ||
routerDomainsRouter.post('/', authMw, ...createRouterDomains); | ||
routerDomainsRouter.get('/:id', authMw, ...getRouterDomains); | ||
routerDomainsRouter.put('/:id', authMw, ...updateRouterDomains); | ||
routerDomainsRouter.delete('/:id', authMw, ...deleteRouterDomains); | ||
|
||
export default routerDomainsRouter; | ||
return routerDomainsRouter; | ||
}; |
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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this should be a required parameter.