GithubHelp home page GithubHelp logo

Comments (6)

mcollina avatar mcollina commented on September 27, 2024

from fluent-json-schema.

Eomm avatar Eomm commented on September 27, 2024

@gjovanov could you try this setup?

const invite = S.object()
  .prop('_id', S.string())
  .prop('inviter', S.string())
  .prop('room', S.mixed([room, S.TYPES.NULL]))
  .prop('email', S.string())
  .prop('type', S.string())
  .prop('status', S.string().enum(statuses))
  .prop('createdAt', S.string())
  .prop('updatedAt', S.string())

from fluent-json-schema.

gjovanov avatar gjovanov commented on September 27, 2024

Thanks for the suggestion @Eomm . I just tried it, but it didn't work. This is the error being thrown:

Error: Invalid 'types'. It must be an array of types. Valid types are string | number | boolean | integer | object | array | null
    at Object.mixed (C:\Dev\gjovanov\roomler\node_modules\fluent-schema\src\FluentSchema.js:148:13)
    at Object.mixed (C:\Dev\gjovanov\roomler\node_modules\fluent-schema\src\FluentSchema.js:171:23)

Only this is allowed:
.prop('room', S.mixed([S.TYPES.OBJECT, S.TYPES.NULL]))

But it has some side-effects like missing room props later.

from fluent-json-schema.

aboutlo avatar aboutlo commented on September 27, 2024

I think the room property should be marked as required.

it.only('throws an execption if the property is null', () => {
      const room = S.object()
        .prop('_id', S.string())
        .prop('owner', S.string())
        .prop('name', S.string())
        .prop('moderators', S.array().items(S.string()))
        .prop('members', S.array().items(S.string()))

      const invite = S.object()
        .prop('inviter', S.string())
        .prop('room', room) // THROWS an error if property room has null value
        .prop('email', S.string())
        .prop('type', S.string())
        .prop('createdAt', S.string())
        .prop('updatedAt', S.string())
        .required(['room'])

      const ajv = new Ajv().valueOf()
      const validate = ajv.compile(invite.valueOf())
      const isValid = validate({
        room: null,
      })

      console.log(validate.errors)
      expect(isValid).toBeFalsy()
    })

from fluent-json-schema.

gjovanov avatar gjovanov commented on September 27, 2024

It made sense your proposal since null value means no value set by the user, whereat undefined means initialized but no value has been assigned yet. Hence I was eager to try out your suggestion, however I'm still getting the same error:

TypeError: Cannot read property 'toJSON' of null
    at $mainroom (eval at build (C:\Dev\gjovanov\roomler\node_modules\fast-json-stringify\index.js:134:20), <anonymous>:195:30)
    at Object.$main (eval at build (C:\Dev\gjovanov\roomler\node_modules\fast-json-stringify\index.js:134:20), <anonymous>:119:17)
    at serialize (C:\Dev\gjovanov\roomler\node_modules\fastify\lib\validation.js:131:41)

Not sure how come your tests are passing. It seems to be related to fast-json-stringify.

from fluent-json-schema.

mcollina avatar mcollina commented on September 27, 2024

As I've said in #45 (comment), this is likely a bug in fast-json-stringify and not this library.

from fluent-json-schema.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.