From f17af2344a05c49c94eb3a73fc3d83d023b7a03c Mon Sep 17 00:00:00 2001 From: chenfei Date: Wed, 29 Mar 2023 11:56:01 +0800 Subject: [PATCH] add test case of int.shape raise err --- .../tensor_methods/test_tensor_shape.py | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 tests/ut/python/graph_syntax/tensor/tensor_methods/test_tensor_shape.py diff --git a/tests/ut/python/graph_syntax/tensor/tensor_methods/test_tensor_shape.py b/tests/ut/python/graph_syntax/tensor/tensor_methods/test_tensor_shape.py new file mode 100644 index 00000000000..b47832c03a9 --- /dev/null +++ b/tests/ut/python/graph_syntax/tensor/tensor_methods/test_tensor_shape.py @@ -0,0 +1,36 @@ +# Copyright 2023 Huawei Technologies Co., Ltd +# +# Licensed 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 mindspore.nn as nn +import pytest + + +def test_scalar_get_shape_raise_err(): + """ + Feature: Tensor.shape. + Description: Get shape attr from int object, expect raise exception. + Expectation: AttributeError exception raise. + """ + + class ShapeNet(nn.Cell): + def __init__(self): + super().__init__() + + def construct(self, x): + return x.shape + + with pytest.raises(AttributeError) as err_info: + ShapeNet()(1) + assert "'int' object has no attribute 'shape'" in str(err_info.value)