| /* |
| * Copyright (C) 2017-2020 The Project X-Ray Authors. |
| * |
| * Use of this source code is governed by a ISC-style |
| * license that can be found in the LICENSE file or at |
| * https://opensource.org/licenses/ISC |
| * |
| * SPDX-License-Identifier: ISC |
| */ |
| #include <prjxray/xilinx/spartan6/configuration_column.h> |
| |
| #include <gtest/gtest.h> |
| #include <prjxray/xilinx/spartan6/block_type.h> |
| #include <prjxray/xilinx/spartan6/frame_address.h> |
| #include <yaml-cpp/yaml.h> |
| |
| using namespace prjxray::xilinx; |
| |
| TEST(ConfigurationColumnTest, IsValidFrameAddress) { |
| spartan6::ConfigurationColumn column(10); |
| |
| // Inside this column. |
| EXPECT_TRUE(column.IsValidFrameAddress( |
| spartan6::FrameAddress(spartan6::BlockType::CLB_IOI_CLK, 1, 2, 3))); |
| // Past this column's frame width. |
| EXPECT_FALSE(column.IsValidFrameAddress(spartan6::FrameAddress( |
| spartan6::BlockType::CLB_IOI_CLK, 1, 2, 10))); |
| } |
| |
| TEST(ConfigurationColumnTest, GetNextFrameAddressYieldNextAddressInColumn) { |
| spartan6::ConfigurationColumn column(10); |
| |
| auto next_address = column.GetNextFrameAddress( |
| spartan6::FrameAddress(spartan6::BlockType::CLB_IOI_CLK, 1, 2, 3)); |
| EXPECT_TRUE(next_address); |
| EXPECT_EQ( |
| *next_address, |
| spartan6::FrameAddress(spartan6::BlockType::CLB_IOI_CLK, 1, 2, 4)); |
| } |
| |
| TEST(ConfigurationColumnTest, GetNextFrameAddressYieldNothingAtEndOfColumn) { |
| spartan6::ConfigurationColumn column(10); |
| |
| EXPECT_FALSE(column.GetNextFrameAddress( |
| spartan6::FrameAddress(spartan6::BlockType::CLB_IOI_CLK, 1, 2, 9))); |
| } |
| |
| TEST(ConfigurationColumnTest, GetNextFrameAddressYieldNothingOutsideColumn) { |
| spartan6::ConfigurationColumn column(10); |
| |
| // Just past last frame in column. |
| EXPECT_FALSE(column.GetNextFrameAddress(spartan6::FrameAddress( |
| spartan6::BlockType::CLB_IOI_CLK, 1, 2, 10))); |
| } |
| |
| TEST(ConfigurationColumnTest, YamlEncodeTest) { |
| spartan6::ConfigurationColumn column(10); |
| |
| YAML::Node node(column); |
| EXPECT_TRUE(node["frame_count"]); |
| EXPECT_EQ(node["frame_count"].as<int>(), 10); |
| } |
| |
| TEST(ConfigurationColumnTest, YAMLDecodeTest) { |
| YAML::Node node; |
| node.SetTag("xilinx/spartan6/configuration_column"); |
| node["frame_count"] = 10; |
| |
| auto column = node.as<spartan6::ConfigurationColumn>(); |
| EXPECT_TRUE(column.GetNextFrameAddress( |
| spartan6::FrameAddress(spartan6::BlockType::CLB_IOI_CLK, 1, 2, 8))); |
| EXPECT_FALSE(column.GetNextFrameAddress( |
| spartan6::FrameAddress(spartan6::BlockType::CLB_IOI_CLK, 1, 2, 9))); |
| } |