Giter VIP home page Giter VIP logo

Comments (2)

Grokzen avatar Grokzen commented on July 21, 2024

In my world the order the rules would apply would be.

  • required, because that would apply to the key existing
  • type, and this is the error that should be raised in your case because None != str type
  • any other scalar checks

The issue from a quick look at the problem is that '_validate_scalar()' is not runned on the value for some reason. I will look it up closer later tonight.

from pykwalify.

Grokzen avatar Grokzen commented on July 21, 2024

Problem fixed with db5f7f0 Your schema now raises the following error.

ERROR - ["Value: None is not of type 'str' : /streams/0/name"]
Traceback (most recent call last):
  File "scripts/pykwalify", line 22, in <module>
    pykwalify.cli.main()
  File "/home/grok/code/pykwalify/pykwalify/cli.py", line 96, in main
    c.validate()
  File "/home/grok/code/pykwalify/pykwalify/core.py", line 92, in validate
    raise SchemaError("validation.invalid : {}".format(errors))
pykwalify.errors.SchemaError: <SchemaError: error code 6: validation.invalid : ["Value: None is not of type 'str' : /streams/0/name"]>

The problem was that when validating scalar type it would check if value is None and just return out of that function silent and the typechecking was done last in the check function and because of that it was not used in your case. Now the typechecking is done first so type errors is detected.

I will add your schema as a test in later commit and add one fix to scalar type checking so that you can specify None as a type.

from pykwalify.

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.