Imported Upstream version 1.7.0
[platform/core/ml/nnfw.git] / compiler / luci / lang / src / Nodes / CircleSplit.test.cpp
1 /*
2  * Copyright (c) 2020 Samsung Electronics Co., Ltd. All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *    http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include "luci/IR/Nodes/CircleSplit.h"
18
19 #include "luci/IR/CircleDialect.h"
20 #include "luci/IR/CircleNodeVisitor.h"
21
22 #include <gtest/gtest.h>
23
24 TEST(CircleSplitTest, constructor)
25 {
26   luci::CircleSplit split_node;
27
28   ASSERT_EQ(luci::CircleDialect::get(), split_node.dialect());
29   ASSERT_EQ(luci::CircleOpcode::SPLIT, split_node.opcode());
30
31   ASSERT_EQ(nullptr, split_node.input());
32   ASSERT_EQ(nullptr, split_node.split_dim());
33   ASSERT_EQ(0, split_node.num_split());
34 }
35
36 TEST(CircleSplitTest, input_NEG)
37 {
38   luci::CircleSplit split_node;
39   luci::CircleSplit node;
40
41   split_node.input(&node);
42   split_node.split_dim(&node);
43   ASSERT_NE(nullptr, split_node.input());
44   ASSERT_NE(nullptr, split_node.split_dim());
45
46   split_node.input(nullptr);
47   split_node.split_dim(nullptr);
48   ASSERT_EQ(nullptr, split_node.input());
49   ASSERT_EQ(nullptr, split_node.split_dim());
50
51   split_node.num_split(100);
52   ASSERT_NE(0, split_node.num_split());
53 }
54
55 TEST(CircleSplitTest, arity_NEG)
56 {
57   luci::CircleSplit split_node;
58
59   ASSERT_NO_THROW(split_node.arg(1));
60   ASSERT_THROW(split_node.arg(2), std::out_of_range);
61 }
62
63 TEST(CircleSplitTest, visit_mutable_NEG)
64 {
65   struct TestVisitor final : public luci::CircleNodeMutableVisitor<void>
66   {
67   };
68
69   luci::CircleSplit split_node;
70
71   TestVisitor tv;
72   ASSERT_THROW(split_node.accept(&tv), std::exception);
73 }
74
75 TEST(CircleSplitTest, visit_NEG)
76 {
77   struct TestVisitor final : public luci::CircleNodeVisitor<void>
78   {
79   };
80
81   luci::CircleSplit split_node;
82
83   TestVisitor tv;
84   ASSERT_THROW(split_node.accept(&tv), std::exception);
85 }