-
Notifications
You must be signed in to change notification settings - Fork 13.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(annotataion): handle required fields properly (#17234)
- Loading branch information
Showing
7 changed files
with
195 additions
and
11 deletions.
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
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
157 changes: 157 additions & 0 deletions
157
tests/integration_tests/annotation_layers/schema_tests.py
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,157 @@ | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, | ||
# software distributed under the License is distributed on an | ||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
# KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations | ||
# under the License. | ||
import pytest | ||
from marshmallow.exceptions import ValidationError | ||
|
||
from superset.annotation_layers.annotations.schemas import ( | ||
AnnotationPostSchema, | ||
AnnotationPutSchema, | ||
) | ||
from superset.annotation_layers.schemas import ( | ||
AnnotationLayerPostSchema, | ||
AnnotationLayerPutSchema, | ||
) | ||
from tests.integration_tests.annotation_layers.fixtures import ( | ||
END_DTTM, | ||
END_STR, | ||
START_DTTM, | ||
START_STR, | ||
) | ||
|
||
|
||
def test_annotation_layer_post_schema_with_name(): | ||
result = AnnotationLayerPostSchema().load({"name": "foo"}) | ||
assert result["name"] == "foo" | ||
assert "descr" not in result | ||
|
||
|
||
def test_annotation_layer_post_schema_with_name_and_descr(): | ||
result = AnnotationLayerPostSchema().load({"name": "foo", "descr": "bar"}) | ||
assert result["name"] == "foo" | ||
assert result["descr"] == "bar" | ||
|
||
|
||
def test_annotation_layer_post_schema_with_null_name(): | ||
with pytest.raises(ValidationError): | ||
AnnotationLayerPostSchema().load({"name": None}) | ||
|
||
|
||
def test_annotation_layer_post_schema_empty(): | ||
with pytest.raises(ValidationError): | ||
AnnotationLayerPostSchema().load({}) | ||
|
||
|
||
def test_annotation_layer_put_schema_empty(): | ||
result = AnnotationLayerPutSchema().load({}) | ||
assert result == {} | ||
|
||
|
||
def test_annotation_layer_put_schema_with_null_name(): | ||
with pytest.raises(ValidationError): | ||
AnnotationLayerPutSchema().load({"name": None}) | ||
|
||
|
||
def test_annotation_layer_put_schema_with_null_descr(): | ||
with pytest.raises(ValidationError): | ||
AnnotationLayerPutSchema().load({"descr": None}) | ||
|
||
|
||
def test_annotation_post_schema_basic(): | ||
result = AnnotationPostSchema().load( | ||
{"short_descr": "foo", "start_dttm": START_STR, "end_dttm": END_STR} | ||
) | ||
assert result["short_descr"] == "foo" | ||
assert result["start_dttm"] == START_DTTM | ||
assert result["end_dttm"] == END_DTTM | ||
|
||
|
||
def test_annotation_post_schema_full(): | ||
result = AnnotationPostSchema().load( | ||
{ | ||
"short_descr": "foo", | ||
"long_descr": "bar", | ||
"start_dttm": START_STR, | ||
"end_dttm": END_STR, | ||
"json_metadata": '{"abc": 123}', | ||
} | ||
) | ||
assert result["short_descr"] == "foo" | ||
assert result["long_descr"] == "bar" | ||
assert result["start_dttm"] == START_DTTM | ||
assert result["end_dttm"] == END_DTTM | ||
assert result["json_metadata"] == '{"abc": 123}' | ||
|
||
|
||
def test_annotation_post_schema_short_descr_null(): | ||
with pytest.raises(ValidationError): | ||
AnnotationPostSchema().load( | ||
{"short_descr": None, "start_dttm": START_STR, "end_dttm": END_STR} | ||
) | ||
|
||
|
||
def test_annotation_post_schema_start_dttm_null(): | ||
with pytest.raises(ValidationError): | ||
result = AnnotationPostSchema().load( | ||
{"short_descr": "foo", "start_dttm": None, "end_dttm": END_STR} | ||
) | ||
|
||
|
||
def test_annotation_post_schema_end_dttm_null(): | ||
with pytest.raises(ValidationError): | ||
AnnotationPostSchema().load( | ||
{"short_descr": "foo", "start_dttm": START_STR, "end_dttm": None} | ||
) | ||
|
||
|
||
def test_annotation_put_schema_empty(): | ||
result = AnnotationPutSchema().load({}) | ||
assert result == {} | ||
|
||
|
||
def test_annotation_put_schema_short_descr_null(): | ||
with pytest.raises(ValidationError): | ||
AnnotationPutSchema().load({"short_descr": None}) | ||
|
||
|
||
def test_annotation_put_schema_start_dttm_null(): | ||
with pytest.raises(ValidationError): | ||
AnnotationPutSchema().load({"start_dttm": None}) | ||
|
||
|
||
def test_annotation_put_schema_end_dttm_null(): | ||
with pytest.raises(ValidationError): | ||
AnnotationPutSchema().load({"end_dttm": None}) | ||
|
||
|
||
def test_annotation_put_schema_json_metadata(): | ||
result = AnnotationPutSchema().load({"json_metadata": '{"abc": 123}'}) | ||
assert result["json_metadata"] == '{"abc": 123}' | ||
|
||
|
||
def test_annotation_put_schema_json_metadata_null(): | ||
result = AnnotationPutSchema().load({"json_metadata": None}) | ||
assert result["json_metadata"] is None | ||
|
||
|
||
def test_annotation_put_schema_json_metadata_empty(): | ||
result = AnnotationPutSchema().load({"json_metadata": ""}) | ||
assert result["json_metadata"] == "" | ||
|
||
|
||
def test_annotation_put_schema_json_metadata_invalid(): | ||
with pytest.raises(ValidationError): | ||
AnnotationPutSchema().load({"json_metadata": "foo bar"}) |