Skip to content

Commit

Permalink
Add requiredWhen to validator spec
Browse files Browse the repository at this point in the history
closes af#78
  • Loading branch information
neezer committed May 8, 2018
1 parent bf660a9 commit 85b1639
Show file tree
Hide file tree
Showing 6 changed files with 43 additions and 4 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ Each validation function accepts an (optional) object with the following attribu
* `desc` - A string that describes the env var.
* `example` - An example value for the env var.
* `docs` - A url that leads to more detailed documentation about the env var.
* `requiredWhen` - A function that receives the raw env vars and must return a boolean. If true, this env var will be required. If false, this env var will be optional.


## Custom validators
Expand Down
5 changes: 5 additions & 0 deletions envalid.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ interface Spec<T> {
* A url that leads to more detailed documentation about the env var.
*/
docs?: string
/**
* A function that receives the full raw environment and returns a boolean
* indicating if this field is required or optional.
*/
requiredWhen?: (env: any) => boolean
}

interface ValidatorSpec<T> extends Spec<T> {
Expand Down
8 changes: 7 additions & 1 deletion example/env.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,11 @@ module.exports = envalid.cleanEnv(process.env, {

// For this example, the MESSAGE env var will be read from the .env
// file in this directory (so the default value won't be used):
MESSAGE: envalid.str({ default: 'Hello, world' })
MESSAGE: envalid.str({ default: 'Hello, world' }),

USE_TLS: envalid.bool({ defualt: false }),

// If USE_TLS is true, this will throw if no value is provided (required)
// If USE_TLS is false, this will not throw if no value is provided (optional)
TLS_KEY_PATH: envalid.str({ requiredWhen: env => !!env.USE_TLS })
})
6 changes: 6 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,12 @@ function cleanEnv(inputEnv, specs = {}, options = {}) {
throw new EnvMissingError(formatSpecDescription(spec))
}

if (typeof spec.requiredWhen === 'function') {
if (!spec.requiredWhen(env)) {
continue
}
}

if (rawValue === undefined) {
if (!usingFalsyDefault) {
throw new EnvMissingError(formatSpecDescription(spec))
Expand Down
8 changes: 6 additions & 2 deletions tests/envalid.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ const spec = {
json: json({
devDefault: { foo: 'bar' }
}),
url: url(),
url: url({
requiredWhen: () => true
}),
email: email({
example: 'example',
docs: 'http://example.com'
Expand All @@ -62,7 +64,9 @@ const inferredEnv = cleanEnv(
json: json({
devDefault: { foo: 'bar' }
}),
url: url(),
url: url({
requiredWhen: () => true
}),
email: email({
example: 'example',
docs: 'http://example.com'
Expand Down
19 changes: 18 additions & 1 deletion tests/test_basics.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const { createGroup, assert } = require('painless')
const { cleanEnv, EnvError, EnvMissingError, str, num, testOnly } = require('..')
const { cleanEnv, EnvError, EnvMissingError, str, num, bool, testOnly } = require('..')
const { assertPassthrough } = require('./utils')
const test = createGroup()
const makeSilent = { reporter: null }
Expand Down Expand Up @@ -205,3 +205,20 @@ test('testOnly', () => {
EnvMissingError
)
})

test('conditionally required env', () => {
// Throws when the env var isn't in the given choices:
const spec = {
FOO: str({ requiredWhen: rawEnv => !!rawEnv.REQUIRE_FOO }),
REQUIRE_FOO: bool({ default: false })
}

// FOO not required when REQUIRE_FOO is false
assert.deepEqual(cleanEnv({}, spec, makeSilent), { REQUIRE_FOO: false })

// FOO is required when REQUIRE_FOO is true and FOO is not provided
assert.throws(() => cleanEnv({ REQUIRE_FOO: true }, spec, makeSilent), EnvMissingError)

// Works fine when REQUIRE_FOO is true and FOO is satisfied
assertPassthrough({ REQUIRE_FOO: true, FOO: 'bar' }, spec)
})

0 comments on commit 85b1639

Please sign in to comment.