# 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. """Unit tests for Superset""" from typing import Any, Dict, Tuple from superset.charts.schemas import ChartDataQueryContextSchema from superset.common.query_context import QueryContext from tests.base_tests import SupersetTestCase from tests.fixtures.query_context import get_query_context from tests.test_app import app def load_query_context(payload: Dict[str, Any]) -> Tuple[QueryContext, Dict[str, Any]]: return ChartDataQueryContextSchema().load(payload) class SchemaTestCase(SupersetTestCase): def test_query_context_limit_and_offset(self): self.login(username="admin") table_name = "birth_names" table = self.get_table_by_name(table_name) payload = get_query_context(table.name, table.id, table.type) # Use defaults payload["queries"][0].pop("row_limit", None) payload["queries"][0].pop("row_offset", None) query_context, errors = load_query_context(payload) self.assertEqual(errors, {}) query_object = query_context.queries[0] self.assertEqual(query_object.row_limit, app.config["ROW_LIMIT"]) self.assertEqual(query_object.row_offset, 0) # Valid limit and offset payload["queries"][0]["row_limit"] = 100 payload["queries"][0]["row_offset"] = 200 query_context, errors = ChartDataQueryContextSchema().load(payload) self.assertEqual(errors, {}) query_object = query_context.queries[0] self.assertEqual(query_object.row_limit, 100) self.assertEqual(query_object.row_offset, 200) # too low limit and offset payload["queries"][0]["row_limit"] = 0 payload["queries"][0]["row_offset"] = -1 query_context, errors = ChartDataQueryContextSchema().load(payload) self.assertIn("row_limit", errors["queries"][0]) self.assertIn("row_offset", errors["queries"][0])