Initial commit
This commit is contained in:
40
node_modules/@zeit/schemas/.circleci/config.yml
generated
vendored
Normal file
40
node_modules/@zeit/schemas/.circleci/config.yml
generated
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
# Javascript Node CircleCI 2.0 configuration file
|
||||
#
|
||||
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
|
||||
#
|
||||
version: 2
|
||||
jobs:
|
||||
build:
|
||||
docker:
|
||||
# specify the version you desire here
|
||||
- image: circleci/node:latest
|
||||
|
||||
# Specify service dependencies here if necessary
|
||||
# CircleCI maintains a library of pre-built images
|
||||
# documented at https://circleci.com/docs/2.0/circleci-images/
|
||||
# - image: circleci/mongo:3.4.4
|
||||
|
||||
working_directory: ~/repo
|
||||
|
||||
steps:
|
||||
- checkout
|
||||
|
||||
# Download and cache dependencies
|
||||
- restore_cache:
|
||||
keys:
|
||||
- v1-dependencies-{{ checksum "yarn.lock" }}
|
||||
# fallback to using the latest cache if no exact match is found
|
||||
- v1-dependencies-
|
||||
|
||||
- run: yarn
|
||||
|
||||
- save_cache:
|
||||
paths:
|
||||
- node_modules
|
||||
key: v1-dependencies-{{ checksum "yarn.lock" }}
|
||||
|
||||
# run tests!
|
||||
- run: yarn test
|
||||
|
||||
|
||||
|
||||
37
node_modules/@zeit/schemas/.editorconfig
generated
vendored
Normal file
37
node_modules/@zeit/schemas/.editorconfig
generated
vendored
Normal file
@@ -0,0 +1,37 @@
|
||||
root = true
|
||||
|
||||
[*]
|
||||
indent_style = tab
|
||||
indent_size = 4
|
||||
tab_width = 4
|
||||
end_of_line = lf
|
||||
charset = utf-8
|
||||
trim_trailing_whitespace = true
|
||||
insert_final_newline = true
|
||||
|
||||
[{*.json,*.json.example,*.gyp,*.yml,*.yaml}]
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
|
||||
[{*.py,*.asm}]
|
||||
indent_style = space
|
||||
|
||||
[*.py]
|
||||
indent_size = 4
|
||||
|
||||
[*.asm]
|
||||
indent_size = 8
|
||||
|
||||
[*.md]
|
||||
trim_trailing_whitespace = false
|
||||
|
||||
# Ideal settings - some plugins might support these.
|
||||
[*.js]
|
||||
quote_type = single
|
||||
|
||||
[{*.c,*.cc,*.h,*.hh,*.cpp,*.hpp,*.m,*.mm,*.mpp,*.js,*.java,*.go,*.rs,*.php,*.ng,*.jsx,*.ts,*.d,*.cs,*.swift}]
|
||||
curly_bracket_next_line = false
|
||||
spaces_around_operators = true
|
||||
spaces_around_brackets = outside
|
||||
# close enough to 1TB
|
||||
indent_brace_style = K&R
|
||||
1
node_modules/@zeit/schemas/.yarnrc
generated
vendored
Normal file
1
node_modules/@zeit/schemas/.yarnrc
generated
vendored
Normal file
@@ -0,0 +1 @@
|
||||
save-prefix ""
|
||||
21
node_modules/@zeit/schemas/LICENSE
generated
vendored
Normal file
21
node_modules/@zeit/schemas/LICENSE
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2018 ZEIT
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
45
node_modules/@zeit/schemas/README.md
generated
vendored
Normal file
45
node_modules/@zeit/schemas/README.md
generated
vendored
Normal file
@@ -0,0 +1,45 @@
|
||||
# ZEIT's schemas
|
||||
|
||||
[](https://circleci.com/gh/zeit/schemas)
|
||||
[](https://spectrum.chat/zeit)
|
||||
|
||||
The schemas contained within this package are used all across the ZEIT ecosystem to validate config files, requests to APIs and more. It ensures users always send just the right data.
|
||||
|
||||
## Why?
|
||||
|
||||
It is important that these schemas stay in sync between projects, so that the validations are always performed in the same way for the same kind of object.
|
||||
|
||||
The files located in this repository are `.js` and not `.json`, because parsing JSON takes a little bit longer.
|
||||
|
||||
## Usage
|
||||
|
||||
To get started, pick one of the schemas in this repository and load it:
|
||||
|
||||
```js
|
||||
const schema = require('@zeit/schemas/deployment/config');
|
||||
```
|
||||
|
||||
Next, set up [AJV](https://github.com/epoberezkin/ajv) (the validator) and run the schema through it:
|
||||
|
||||
```js
|
||||
const AJV = require('ajv');
|
||||
|
||||
const ajv = new AJV({ allErrors: true });
|
||||
const isValid = ajv.validate(schema, <object-to-validate>);
|
||||
|
||||
if (!isValid) {
|
||||
console.error(`The following entries are wrong: ${JSON.stringify(ajv.errors)}`);
|
||||
}
|
||||
```
|
||||
|
||||
That is all! :tada:
|
||||
|
||||
## Contributing
|
||||
|
||||
1. [Fork](https://help.github.com/articles/fork-a-repo/) this repository to your own GitHub account and then [clone](https://help.github.com/articles/cloning-a-repository/) it to your local device
|
||||
2. Link the package to the global module directory: `npm link`
|
||||
3. Within the module you want to test your local development instance of `@zeit/schemas`, just link it to the dependencies: `npm link @zeit/schemas` and load it!
|
||||
|
||||
## Author
|
||||
|
||||
Leo Lamprecht ([@notquiteleo](https://twitter.com/notquiteleo)) - [ZEIT](https://zeit.co)
|
||||
41
node_modules/@zeit/schemas/deployment/config-env.js
generated
vendored
Normal file
41
node_modules/@zeit/schemas/deployment/config-env.js
generated
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
const maxEnvLength = 100;
|
||||
|
||||
const EnvKey = {
|
||||
type: 'string',
|
||||
pattern: '^[A-z0-9_]+$',
|
||||
minLength: 1,
|
||||
maxLength: 256
|
||||
};
|
||||
|
||||
const EnvKeys = {
|
||||
type: 'array',
|
||||
minItems: 0,
|
||||
maxItems: maxEnvLength,
|
||||
uniqueItems: true,
|
||||
items: EnvKey,
|
||||
additionalProperties: false
|
||||
};
|
||||
|
||||
const EnvValue = {
|
||||
type: 'string',
|
||||
minLength: 0,
|
||||
maxLength: 65536
|
||||
};
|
||||
|
||||
// { 'FOO': 'BAR' }
|
||||
const EnvObject = {
|
||||
type: 'object',
|
||||
minProperties: 0,
|
||||
maxProperties: maxEnvLength,
|
||||
patternProperties: {
|
||||
'.+': EnvValue
|
||||
},
|
||||
additionalProperties: false
|
||||
};
|
||||
|
||||
module.exports = {
|
||||
EnvKey,
|
||||
EnvKeys,
|
||||
EnvValue,
|
||||
EnvObject
|
||||
};
|
||||
79
node_modules/@zeit/schemas/deployment/config-static.js
generated
vendored
Normal file
79
node_modules/@zeit/schemas/deployment/config-static.js
generated
vendored
Normal file
@@ -0,0 +1,79 @@
|
||||
module.exports = {
|
||||
type: 'object',
|
||||
properties: {
|
||||
'public': {
|
||||
type: 'string'
|
||||
},
|
||||
'cleanUrls': {
|
||||
type: [
|
||||
'boolean',
|
||||
'array'
|
||||
]
|
||||
},
|
||||
'rewrites': {
|
||||
type: 'array'
|
||||
},
|
||||
'redirects': {
|
||||
type: 'array'
|
||||
},
|
||||
'headers': {
|
||||
type: 'array',
|
||||
maxItems: 50,
|
||||
minItems: 1,
|
||||
uniqueItems: true,
|
||||
items: {
|
||||
type: 'object',
|
||||
required: ['source', 'headers'],
|
||||
properties: {
|
||||
source: {
|
||||
type: 'string',
|
||||
maxLength: 100,
|
||||
minLength: 1
|
||||
},
|
||||
headers: {
|
||||
type: 'array',
|
||||
maxItems: 50,
|
||||
minItems: 1,
|
||||
uniqueItems: true,
|
||||
items: {
|
||||
type: 'object',
|
||||
required: ['key', 'value'],
|
||||
properties: {
|
||||
key: {
|
||||
type: 'string',
|
||||
minLength: 1,
|
||||
maxLength: 128,
|
||||
pattern: "^[a-zA-Z0-9_!#$%&'*+.^`|~-]+$"
|
||||
},
|
||||
value: {
|
||||
type: 'string',
|
||||
minLength: 1,
|
||||
maxLength: 2048,
|
||||
pattern: "^[a-zA-Z0-9_!#$%&'*+.;/:, =^`|~-]+$"
|
||||
}
|
||||
},
|
||||
additionalProperties: false
|
||||
}
|
||||
}
|
||||
},
|
||||
additionalProperties: false
|
||||
}
|
||||
},
|
||||
'directoryListing': {
|
||||
type: [
|
||||
'boolean',
|
||||
'array'
|
||||
]
|
||||
},
|
||||
'unlisted': {
|
||||
type: 'array'
|
||||
},
|
||||
'trailingSlash': {
|
||||
type: 'boolean'
|
||||
},
|
||||
'renderSingle': {
|
||||
type: 'boolean'
|
||||
}
|
||||
},
|
||||
additionalProperties: false
|
||||
};
|
||||
145
node_modules/@zeit/schemas/deployment/config.js
generated
vendored
Normal file
145
node_modules/@zeit/schemas/deployment/config.js
generated
vendored
Normal file
@@ -0,0 +1,145 @@
|
||||
const {EnvKeys, EnvObject} = require('./config-env');
|
||||
const staticSchema = require('./config-static');
|
||||
|
||||
module.exports = {
|
||||
type: 'object',
|
||||
additionalProperties: false,
|
||||
dependencies: {
|
||||
slot: {
|
||||
type: 'object',
|
||||
required: ['features'],
|
||||
properties: {
|
||||
features: {
|
||||
type: 'object',
|
||||
required: ['cloud'],
|
||||
properties: {
|
||||
cloud: {
|
||||
'const': 'v2'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
properties: {
|
||||
'name': {
|
||||
type: 'string',
|
||||
minLength: 1
|
||||
},
|
||||
'alias': {
|
||||
type: [
|
||||
'string',
|
||||
'array'
|
||||
]
|
||||
},
|
||||
'env': { anyOf: [EnvObject, EnvKeys] },
|
||||
'build': {
|
||||
type: 'object',
|
||||
additionalProperties: false,
|
||||
properties: {
|
||||
env: EnvObject
|
||||
}
|
||||
},
|
||||
'scale': {
|
||||
type: 'object',
|
||||
patternProperties: {
|
||||
'.+': {
|
||||
type: 'object',
|
||||
required: ['max', 'min'],
|
||||
properties: {
|
||||
max: {
|
||||
anyOf: [
|
||||
{
|
||||
type: 'number',
|
||||
minimum: 1
|
||||
},
|
||||
{'const': 'auto'}
|
||||
]
|
||||
},
|
||||
min: {
|
||||
type: 'number',
|
||||
minimum: 0
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
additionalProperties: false
|
||||
},
|
||||
'regions': {
|
||||
type: 'array'
|
||||
},
|
||||
'dotenv': {
|
||||
type: [
|
||||
'boolean',
|
||||
'string'
|
||||
]
|
||||
},
|
||||
'files': {
|
||||
type: 'array'
|
||||
},
|
||||
'type': {
|
||||
type: 'string'
|
||||
},
|
||||
'forwardNpm': {
|
||||
type: 'boolean'
|
||||
},
|
||||
'public': {
|
||||
type: 'boolean'
|
||||
},
|
||||
'engines': {
|
||||
type: 'object'
|
||||
},
|
||||
'api': {
|
||||
type: 'string'
|
||||
},
|
||||
'static': staticSchema,
|
||||
'limits': {
|
||||
type: 'object',
|
||||
properties: {
|
||||
duration: {
|
||||
type: 'number',
|
||||
minimum: 60000,
|
||||
maximum: 60000 * 15 // max 15m runtime
|
||||
},
|
||||
maxConcurrentReqs: {
|
||||
type: 'number',
|
||||
minimum: 1,
|
||||
maximum: 256
|
||||
},
|
||||
timeout: {
|
||||
type: 'number',
|
||||
minimum: 60000,
|
||||
maximum: 60000 * 15 // max duration
|
||||
}
|
||||
},
|
||||
additionalProperties: false
|
||||
},
|
||||
'features': {
|
||||
type: 'object',
|
||||
patternProperties: {
|
||||
'.*': {
|
||||
type: ['string', 'number', 'boolean']
|
||||
}
|
||||
}
|
||||
},
|
||||
'github': {
|
||||
type: 'object',
|
||||
properties: {
|
||||
enabled: {
|
||||
type: 'boolean'
|
||||
},
|
||||
aliasing: {
|
||||
type: 'boolean'
|
||||
},
|
||||
autoAlias: {
|
||||
type: 'boolean'
|
||||
}
|
||||
},
|
||||
additionalProperties: false
|
||||
},
|
||||
'slot': {
|
||||
type: 'string',
|
||||
pattern: 'c.125-m512|c1-m4096|staging-*'
|
||||
}
|
||||
}
|
||||
};
|
||||
28
node_modules/@zeit/schemas/package.json
generated
vendored
Normal file
28
node_modules/@zeit/schemas/package.json
generated
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
{
|
||||
"name": "@zeit/schemas",
|
||||
"version": "2.6.0",
|
||||
"description": "All schemas used for validation that are shared between our projects",
|
||||
"scripts": {
|
||||
"test": "yarn run lint && best --verbose",
|
||||
"lint": "zeit-eslint --ext .jsx,.js .",
|
||||
"lint-staged": "git diff --diff-filter=ACMRT --cached --name-only '*.js' '*.jsx' | xargs zeit-eslint"
|
||||
},
|
||||
"repository": "zeit/schemas",
|
||||
"author": "leo",
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@zeit/best": "0.4.3",
|
||||
"@zeit/eslint-config-node": "0.3.0",
|
||||
"@zeit/git-hooks": "0.1.4",
|
||||
"ajv": "6.5.1",
|
||||
"eslint": "4.19.1"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"extends": [
|
||||
"@zeit/eslint-config-node"
|
||||
]
|
||||
},
|
||||
"git": {
|
||||
"pre-commit": "lint-staged"
|
||||
}
|
||||
}
|
||||
88
node_modules/@zeit/schemas/test/deployment-env.js
generated
vendored
Normal file
88
node_modules/@zeit/schemas/test/deployment-env.js
generated
vendored
Normal file
@@ -0,0 +1,88 @@
|
||||
/* eslint camelcase: 0 */
|
||||
const AJV = require('ajv');
|
||||
const assert = require('assert');
|
||||
const {
|
||||
EnvKeys,
|
||||
EnvObject
|
||||
} = require('../deployment/config-env');
|
||||
|
||||
const ajv = new AJV({allErrors: true});
|
||||
|
||||
// EnvKeys
|
||||
exports.test_env_keys_valid = () => {
|
||||
const isValid = ajv.validate(EnvKeys, [
|
||||
'FOO',
|
||||
'BAR'
|
||||
]);
|
||||
assert.equal(isValid, true);
|
||||
};
|
||||
|
||||
exports.test_env_keys_too_short = () => {
|
||||
const isValid = ajv.validate(EnvKeys, [
|
||||
'FOO',
|
||||
''
|
||||
]);
|
||||
assert.equal(isValid, false);
|
||||
assert.equal(ajv.errors[0].keyword, 'minLength');
|
||||
};
|
||||
|
||||
exports.test_env_keys_too_long = () => {
|
||||
const isValid = ajv.validate(EnvKeys, [
|
||||
'FOO',
|
||||
'A'.repeat(257)
|
||||
]);
|
||||
assert.equal(isValid, false);
|
||||
assert.equal(ajv.errors[0].keyword, 'maxLength');
|
||||
};
|
||||
|
||||
exports.test_env_keys_invalid_chars = () => {
|
||||
const isValid = ajv.validate(EnvKeys, [
|
||||
'FOO',
|
||||
'BA,D'
|
||||
]);
|
||||
assert.equal(isValid, false);
|
||||
assert.equal(ajv.errors[0].keyword, 'pattern');
|
||||
};
|
||||
|
||||
exports.test_env_keys_invalid_type = () => {
|
||||
const isValid = ajv.validate(EnvKeys, [
|
||||
'FOO',
|
||||
true
|
||||
]);
|
||||
assert.equal(isValid, false);
|
||||
assert.equal(ajv.errors[0].keyword, 'type');
|
||||
};
|
||||
|
||||
exports.test_env_keys_non_unique = () => {
|
||||
const isValid = ajv.validate(EnvKeys, [
|
||||
'FOO',
|
||||
'FOO'
|
||||
]);
|
||||
assert.equal(isValid, false);
|
||||
assert.equal(ajv.errors[0].keyword, 'uniqueItems');
|
||||
};
|
||||
|
||||
// EnvObject
|
||||
exports.test_env_object_valid = () => {
|
||||
const isValid = ajv.validate(EnvObject, {
|
||||
FOO: 'BAR',
|
||||
BAZ: '@secret'
|
||||
});
|
||||
assert.equal(isValid, true);
|
||||
};
|
||||
|
||||
exports.test_env_object_bad_type = () => {
|
||||
const isValid = ajv.validate(EnvObject, {
|
||||
FOO: true
|
||||
});
|
||||
assert.equal(isValid, false);
|
||||
assert.equal(ajv.errors[0].keyword, 'type');
|
||||
};
|
||||
|
||||
exports.test_env_object_too_long = () => {
|
||||
const isValid = ajv.validate(EnvObject, {
|
||||
FOO: 'a'.repeat(70000)
|
||||
});
|
||||
assert.equal(isValid, false);
|
||||
assert.equal(ajv.errors[0].keyword, 'maxLength');
|
||||
};
|
||||
299
node_modules/@zeit/schemas/test/deployment.js
generated
vendored
Normal file
299
node_modules/@zeit/schemas/test/deployment.js
generated
vendored
Normal file
@@ -0,0 +1,299 @@
|
||||
/* eslint camelcase: 0 */
|
||||
const AJV = require('ajv');
|
||||
const assert = require('assert');
|
||||
const deploymentConfigSchema = require('../deployment/config');
|
||||
|
||||
const ajv = new AJV({allErrors: true});
|
||||
|
||||
exports.test_unknown_keys = () => {
|
||||
const isValid = ajv.validate(deploymentConfigSchema, {
|
||||
foo: 1,
|
||||
bar: 2
|
||||
});
|
||||
assert.equal(isValid, false);
|
||||
assert.equal(ajv.errors.length, 2);
|
||||
['foo', 'bar'].forEach((prop, i) => {
|
||||
const error = ajv.errors[i];
|
||||
assert.equal(error.keyword, 'additionalProperties');
|
||||
assert.equal(error.params.additionalProperty, prop);
|
||||
});
|
||||
};
|
||||
|
||||
exports.test_features_object = () => {
|
||||
const isValid = ajv.validate(deploymentConfigSchema, {
|
||||
features: {
|
||||
foo: 'v2',
|
||||
bar: 2
|
||||
}
|
||||
});
|
||||
assert.equal(isValid, true);
|
||||
};
|
||||
|
||||
exports.test_slot_key = () => {
|
||||
const isValid = ajv.validate(deploymentConfigSchema, {
|
||||
features: {
|
||||
cloud: 'v2'
|
||||
},
|
||||
slot: 'c.125-m512'
|
||||
});
|
||||
assert.equal(isValid, true);
|
||||
};
|
||||
|
||||
exports.test_staging_slot_key = () => {
|
||||
const isValid = ajv.validate(deploymentConfigSchema, {
|
||||
features: {
|
||||
cloud: 'v2'
|
||||
},
|
||||
slot: 'staging-c.5-t1-w-m1024'
|
||||
});
|
||||
assert.equal(isValid, true);
|
||||
};
|
||||
|
||||
exports.test_invalid_slot_key = () => {
|
||||
const isValid = ajv.validate(deploymentConfigSchema, {
|
||||
features: {
|
||||
cloud: 'v2'
|
||||
},
|
||||
slot: 'invalid-key'
|
||||
});
|
||||
assert.equal(isValid, false);
|
||||
};
|
||||
|
||||
exports.test_slot_key_without_cloud_v2 = () => {
|
||||
const isValid = ajv.validate(deploymentConfigSchema, {
|
||||
slot: 'c.125-m512'
|
||||
});
|
||||
assert.equal(isValid, false);
|
||||
};
|
||||
|
||||
exports.test_invalid_features_object = () => {
|
||||
const isValid = ajv.validate(deploymentConfigSchema, {
|
||||
features: {
|
||||
foo: []
|
||||
}
|
||||
});
|
||||
assert.equal(isValid, false);
|
||||
};
|
||||
|
||||
exports.test_features_object = () => {
|
||||
const isValid = ajv.validate(deploymentConfigSchema, {
|
||||
limits: {
|
||||
duration: 60000,
|
||||
maxConcurrentReqs: 2,
|
||||
timeout: 60000 * 2
|
||||
}
|
||||
});
|
||||
assert.equal(isValid, true);
|
||||
};
|
||||
|
||||
exports.test_invalid_limits_object = () => {
|
||||
const isValid = ajv.validate(deploymentConfigSchema, {
|
||||
limits: {
|
||||
foo: []
|
||||
}
|
||||
});
|
||||
assert.equal(!isValid, true);
|
||||
};
|
||||
|
||||
exports.test_valid_env_types = () => {
|
||||
let isValid = ajv.validate(deploymentConfigSchema, {
|
||||
env: {
|
||||
VALID: '1'
|
||||
}
|
||||
});
|
||||
assert.equal(isValid, true);
|
||||
|
||||
isValid = ajv.validate(deploymentConfigSchema, {
|
||||
env: [
|
||||
'VALID'
|
||||
]
|
||||
});
|
||||
assert.equal(isValid, true);
|
||||
};
|
||||
|
||||
exports.test_invalid_env_types = () => {
|
||||
const isValid = ajv.validate(deploymentConfigSchema, {
|
||||
env: {
|
||||
INVALID: true
|
||||
}
|
||||
});
|
||||
assert.equal(!isValid, true);
|
||||
};
|
||||
|
||||
exports.test_valid_build_env_types = () => {
|
||||
const isValid = ajv.validate(deploymentConfigSchema, {
|
||||
build: {
|
||||
env: {
|
||||
VALID: '1'
|
||||
}
|
||||
}
|
||||
});
|
||||
assert.equal(isValid, true);
|
||||
};
|
||||
|
||||
exports.test_invalid_build_env_types = () => {
|
||||
const isValid = ajv.validate(deploymentConfigSchema, {
|
||||
build: {
|
||||
env: {
|
||||
INVALID: true
|
||||
}
|
||||
}
|
||||
});
|
||||
assert.equal(!isValid, true);
|
||||
};
|
||||
|
||||
exports.test_invalid_static_object = () => {
|
||||
const isValid = ajv.validate(deploymentConfigSchema, {
|
||||
'static': {
|
||||
foo: []
|
||||
}
|
||||
});
|
||||
assert.equal(isValid, false);
|
||||
};
|
||||
|
||||
exports.test_valid_static_headers_object = () => {
|
||||
const isValid = ajv.validate(deploymentConfigSchema, {
|
||||
'static': {
|
||||
headers: [
|
||||
{
|
||||
source: '/_next/webpack/chunks/*',
|
||||
headers: [{
|
||||
key: 'Cache-Control',
|
||||
value: 'adssds'
|
||||
}]
|
||||
},
|
||||
{
|
||||
source: '/_next/static/commons/**',
|
||||
headers: [{
|
||||
key: 'Cache-Control',
|
||||
value: 'public, max-age=31536000, immutable'
|
||||
}]
|
||||
},
|
||||
{
|
||||
source: '/_next/*/page/**/*.js',
|
||||
headers: [{
|
||||
key: 'Cache-Control',
|
||||
value: 'public, max-age=31536000, immutable'
|
||||
}]
|
||||
}
|
||||
]
|
||||
}
|
||||
});
|
||||
|
||||
assert.equal(isValid, true);
|
||||
};
|
||||
|
||||
exports.test_invalid_static_headers_object = () => {
|
||||
const isValid = ajv.validate(deploymentConfigSchema, {
|
||||
'static': {
|
||||
headers: [
|
||||
{
|
||||
source: '/_next/webpack/chunks/*',
|
||||
headers: [{
|
||||
key: ':alternate-protocol',
|
||||
value: 'foo\x00bar'
|
||||
}]
|
||||
},
|
||||
{
|
||||
source: '/_next/static/commons/**',
|
||||
headers: [{
|
||||
key: 'Cache-Control',
|
||||
value: 'public, max-age=31536000, immutable'
|
||||
}]
|
||||
}
|
||||
]
|
||||
}
|
||||
});
|
||||
|
||||
assert.equal(isValid, false);
|
||||
};
|
||||
|
||||
exports.test_valid_static_object_trailing_slash = () => {
|
||||
const isValid = ajv.validate(deploymentConfigSchema, {
|
||||
'static': {
|
||||
trailingSlash: true
|
||||
}
|
||||
});
|
||||
assert.equal(isValid, true);
|
||||
};
|
||||
|
||||
exports.test_valid_static_object_invalid_prop = () => {
|
||||
const isValid = ajv.validate(deploymentConfigSchema, {
|
||||
'static': {
|
||||
trailingSlash: []
|
||||
}
|
||||
});
|
||||
assert.equal(isValid, false);
|
||||
};
|
||||
|
||||
exports.test_github_enabled = () => {
|
||||
const isValid = ajv.validate(deploymentConfigSchema, {
|
||||
github: {
|
||||
enabled: false
|
||||
}
|
||||
});
|
||||
assert.equal(isValid, true);
|
||||
};
|
||||
|
||||
exports.test_github_aliasing = () => {
|
||||
const isValid = ajv.validate(deploymentConfigSchema, {
|
||||
github: {
|
||||
aliasing: false
|
||||
}
|
||||
});
|
||||
assert.equal(isValid, true);
|
||||
};
|
||||
|
||||
exports.test_github_auto_alias = () => {
|
||||
const isValid = ajv.validate(deploymentConfigSchema, {
|
||||
github: {
|
||||
autoAlias: false
|
||||
}
|
||||
});
|
||||
assert.equal(isValid, true);
|
||||
};
|
||||
|
||||
exports.test_github_additional_field = () => {
|
||||
const isValid = ajv.validate(deploymentConfigSchema, {
|
||||
github: {
|
||||
abc: 'bbc'
|
||||
}
|
||||
});
|
||||
assert.equal(isValid, false);
|
||||
};
|
||||
|
||||
exports.test_scale_sfo1 = () => {
|
||||
const isValid = ajv.validate(deploymentConfigSchema, {
|
||||
scale: {
|
||||
sfo1: {
|
||||
min: 0,
|
||||
max: 1
|
||||
}
|
||||
}
|
||||
});
|
||||
assert.equal(isValid, true);
|
||||
};
|
||||
|
||||
exports.test_scale_all = () => {
|
||||
const isValid = ajv.validate(deploymentConfigSchema, {
|
||||
scale: {
|
||||
all: {
|
||||
min: 0,
|
||||
max: 'auto'
|
||||
}
|
||||
}
|
||||
});
|
||||
assert.equal(isValid, true);
|
||||
};
|
||||
|
||||
exports.test_scale_invalid = () => {
|
||||
const isValid = ajv.validate(deploymentConfigSchema, {
|
||||
scale: {
|
||||
foo: {
|
||||
min: -1,
|
||||
max: 'auto'
|
||||
}
|
||||
}
|
||||
});
|
||||
assert.equal(isValid, false);
|
||||
};
|
||||
129
node_modules/@zeit/schemas/test/user.js
generated
vendored
Normal file
129
node_modules/@zeit/schemas/test/user.js
generated
vendored
Normal file
@@ -0,0 +1,129 @@
|
||||
/* eslint camelcase: 0 */
|
||||
const AJV = require('ajv');
|
||||
const assert = require('assert');
|
||||
const {User} = require('../user');
|
||||
|
||||
const ajv = new AJV({allErrors: true});
|
||||
|
||||
// Username
|
||||
exports.test_username_null = () => {
|
||||
const isValid = ajv.validate(User, {
|
||||
username: null
|
||||
});
|
||||
assert.equal(isValid, false);
|
||||
assert.equal(ajv.errors.length, 1);
|
||||
assert.equal(ajv.errors[0].dataPath, '.username');
|
||||
assert.equal(ajv.errors[0].message, 'should be string');
|
||||
};
|
||||
|
||||
exports.test_username_invalid_pattern = () => {
|
||||
const isValid = ajv.validate(User, {
|
||||
username: '!!!'
|
||||
});
|
||||
assert.equal(isValid, false);
|
||||
assert.equal(ajv.errors.length, 1);
|
||||
assert.equal(ajv.errors[0].dataPath, '.username');
|
||||
assert.equal(ajv.errors[0].message, 'should match pattern "^[a-z][a-z0-9_-]*$"');
|
||||
};
|
||||
|
||||
exports.test_username_too_short = () => {
|
||||
const isValid = ajv.validate(User, {
|
||||
username: ''
|
||||
});
|
||||
assert.equal(isValid, false);
|
||||
assert.equal(ajv.errors.length, 2);
|
||||
assert.equal(ajv.errors[0].dataPath, '.username');
|
||||
assert.equal(ajv.errors[0].message, 'should NOT be shorter than 1 characters');
|
||||
assert.equal(ajv.errors[1].dataPath, '.username');
|
||||
assert.equal(ajv.errors[1].message, 'should match pattern "^[a-z][a-z0-9_-]*$"');
|
||||
};
|
||||
|
||||
exports.test_username_too_long = () => {
|
||||
const isValid = ajv.validate(User, {
|
||||
username: 'a'.repeat(50)
|
||||
});
|
||||
assert.equal(isValid, false);
|
||||
assert.equal(ajv.errors.length, 1);
|
||||
assert.equal(ajv.errors[0].dataPath, '.username');
|
||||
assert.equal(ajv.errors[0].message, 'should NOT be longer than 48 characters');
|
||||
};
|
||||
|
||||
exports.test_username_valid = () => {
|
||||
assert(ajv.validate(User, {username: 'n8'}));
|
||||
assert(ajv.validate(User, {username: 'rauchg'}));
|
||||
};
|
||||
|
||||
// Name
|
||||
exports.test_name_too_short = () => {
|
||||
const isValid = ajv.validate(User, {
|
||||
name: ''
|
||||
});
|
||||
assert.equal(isValid, false);
|
||||
assert.equal(ajv.errors.length, 1);
|
||||
assert.equal(ajv.errors[0].dataPath, '.name');
|
||||
assert.equal(ajv.errors[0].message, 'should NOT be shorter than 1 characters');
|
||||
};
|
||||
|
||||
exports.test_name_too_long = () => {
|
||||
const isValid = ajv.validate(User, {
|
||||
name: 'a'.repeat(50)
|
||||
});
|
||||
assert.equal(isValid, false);
|
||||
assert.equal(ajv.errors.length, 1);
|
||||
assert.equal(ajv.errors[0].dataPath, '.name');
|
||||
assert.equal(ajv.errors[0].message, 'should NOT be longer than 32 characters');
|
||||
};
|
||||
|
||||
exports.test_name_valid = () => {
|
||||
assert(ajv.validate(User, {name: 'Nate'}));
|
||||
};
|
||||
|
||||
// BillingChecked
|
||||
exports.test_billing_checked_null = () => {
|
||||
const isValid = ajv.validate(User, {
|
||||
billingChecked: null
|
||||
});
|
||||
assert.equal(isValid, false);
|
||||
assert.equal(ajv.errors.length, 1);
|
||||
assert.equal(ajv.errors[0].dataPath, '.billingChecked');
|
||||
assert.equal(ajv.errors[0].message, 'should be boolean');
|
||||
};
|
||||
|
||||
exports.test_billing_checked_valid = () => {
|
||||
assert(ajv.validate(User, {billingChecked: true}));
|
||||
};
|
||||
|
||||
// Avatar
|
||||
exports.test_avatar_too_short = () => {
|
||||
const isValid = ajv.validate(User, {
|
||||
avatar: 'abc'
|
||||
});
|
||||
assert.equal(isValid, false);
|
||||
assert.equal(ajv.errors.length, 1);
|
||||
assert.equal(ajv.errors[0].dataPath, '.avatar');
|
||||
assert.equal(ajv.errors[0].message, 'should NOT be shorter than 40 characters');
|
||||
};
|
||||
|
||||
exports.test_avatar_too_long = () => {
|
||||
const isValid = ajv.validate(User, {
|
||||
avatar: 'a'.repeat(50)
|
||||
});
|
||||
assert.equal(isValid, false);
|
||||
assert.equal(ajv.errors.length, 1);
|
||||
assert.equal(ajv.errors[0].dataPath, '.avatar');
|
||||
assert.equal(ajv.errors[0].message, 'should NOT be longer than 40 characters');
|
||||
};
|
||||
|
||||
exports.test_avatar_invalid = () => {
|
||||
const isValid = ajv.validate(User, {
|
||||
avatar: 'n'.repeat(40)
|
||||
});
|
||||
assert.equal(isValid, false);
|
||||
assert.equal(ajv.errors.length, 1);
|
||||
assert.equal(ajv.errors[0].dataPath, '.avatar');
|
||||
assert.equal(ajv.errors[0].message, 'should match pattern "^[0-9a-f]+$"');
|
||||
};
|
||||
|
||||
exports.test_avatar_valid = () => {
|
||||
assert(ajv.validate(User, {avatar: 'a'.repeat(40)}));
|
||||
};
|
||||
43
node_modules/@zeit/schemas/user/index.js
generated
vendored
Normal file
43
node_modules/@zeit/schemas/user/index.js
generated
vendored
Normal file
@@ -0,0 +1,43 @@
|
||||
const Username = {
|
||||
type: 'string',
|
||||
minLength: 1,
|
||||
maxLength: 48,
|
||||
pattern: '^[a-z][a-z0-9_-]*$'
|
||||
};
|
||||
|
||||
const Name = {
|
||||
type: 'string',
|
||||
minLength: 1,
|
||||
maxLength: 32
|
||||
};
|
||||
|
||||
const Avatar = {
|
||||
type: 'string',
|
||||
minLength: 40,
|
||||
maxLength: 40,
|
||||
pattern: '^[0-9a-f]+$'
|
||||
};
|
||||
|
||||
const DefaultDeploymentDomain = {
|
||||
type: 'string'
|
||||
};
|
||||
|
||||
const User = {
|
||||
type: 'object',
|
||||
additionalProperties: false,
|
||||
properties: {
|
||||
username: Username,
|
||||
name: Name,
|
||||
billingChecked: {type: 'boolean'},
|
||||
avatar: Avatar,
|
||||
defaultDeploymentDomain: DefaultDeploymentDomain
|
||||
}
|
||||
};
|
||||
|
||||
module.exports = {
|
||||
User,
|
||||
Username,
|
||||
Name,
|
||||
Avatar,
|
||||
DefaultDeploymentDomain
|
||||
};
|
||||
1520
node_modules/@zeit/schemas/yarn.lock
generated
vendored
Normal file
1520
node_modules/@zeit/schemas/yarn.lock
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user