Blame tests/fpgainfo/test_board_c.cpp

Packit 534379
// Copyright(c) 2019-2020, Intel Corporation
Packit 534379
//
Packit 534379
// Redistribution  and  use  in source  and  binary  forms,  with  or  without
Packit 534379
// modification, are permitted provided that the following conditions are met:
Packit 534379
//
Packit 534379
// * Redistributions of  source code  must retain the  above copyright notice,
Packit 534379
//   this list of conditions and the following disclaimer.
Packit 534379
// * Redistributions in binary form must reproduce the above copyright notice,
Packit 534379
//   this list of conditions and the following disclaimer in the documentation
Packit 534379
//   and/or other materials provided with the distribution.
Packit 534379
// * Neither the name  of Intel Corporation  nor the names of its contributors
Packit 534379
//   may be used to  endorse or promote  products derived  from this  software
Packit 534379
//   without specific prior written permission.
Packit 534379
//
Packit 534379
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Packit 534379
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING,  BUT NOT LIMITED TO,  THE
Packit 534379
// IMPLIED WARRANTIES OF  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
Packit 534379
// ARE DISCLAIMED.  IN NO EVENT  SHALL THE COPYRIGHT OWNER  OR CONTRIBUTORS BE
Packit 534379
// LIABLE  FOR  ANY  DIRECT,  INDIRECT,  INCIDENTAL,  SPECIAL,  EXEMPLARY,  OR
Packit 534379
// CONSEQUENTIAL  DAMAGES  (INCLUDING,  BUT  NOT LIMITED  TO,  PROCUREMENT  OF
Packit 534379
// SUBSTITUTE GOODS OR SERVICES;  LOSS OF USE,  DATA, OR PROFITS;  OR BUSINESS
Packit 534379
// INTERRUPTION)  HOWEVER CAUSED  AND ON ANY THEORY  OF LIABILITY,  WHETHER IN
Packit 534379
// CONTRACT,  STRICT LIABILITY,  OR TORT  (INCLUDING NEGLIGENCE  OR OTHERWISE)
Packit 534379
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,  EVEN IF ADVISED OF THE
Packit 534379
// POSSIBILITY OF SUCH DAMAGE.
Packit 534379
#include "gtest/gtest.h"
Packit 534379
#include "mock/test_system.h"
Packit 534379
Packit 534379
extern "C" {
Packit 534379
fpga_result load_board_plugin(fpga_token token, void** dl_handle);
Packit 534379
int unload_board_plugin(void);
Packit 534379
int parse_mac_args(int argc, char *argv[]);
Packit 534379
fpga_result mac_filter(fpga_properties * filter, int arc, char *argv[]);
Packit 534379
fpga_result mac_command(fpga_token *tokens, int num_tokens, int argc, char *argv[]);
Packit 534379
int parse_phy_args(int argc, char *argv[]);
Packit 534379
fpga_result phy_filter(fpga_properties *filter, int argc, char *argv[]);
Packit 534379
fpga_result phy_command(fpga_token *tokens, int num_tokens, int argc, char *argv[]);
Packit 534379
fpga_result mac_info(fpga_token token);
Packit 534379
fpga_result phy_group_info(fpga_token token);
Packit 534379
}
Packit 534379
Packit 534379
using namespace opae::testing;
Packit 534379
Packit 534379
class fpgainfo_board_c_p : public ::testing::TestWithParam<std::string> {
Packit 534379
  protected:
Packit 534379
    fpgainfo_board_c_p() {}
Packit 534379
Packit 534379
    virtual void SetUp() override 
Packit 534379
    {
Packit 534379
        ASSERT_TRUE(test_platform::exists(GetParam()));
Packit 534379
        platform_ = test_platform::get(GetParam());
Packit 534379
        system_ = test_system::instance();
Packit 534379
        system_->initialize();
Packit 534379
        system_->prepare_syfs(platform_);
Packit 534379
    
Packit 534379
        EXPECT_EQ(fpgaInitialize(nullptr), FPGA_OK);
Packit 534379
    
Packit 534379
        optind = 0;
Packit 534379
    }
Packit 534379
    
Packit 534379
    virtual void TearDown() override {
Packit 534379
        fpgaFinalize();
Packit 534379
        system_->finalize();
Packit 534379
    }
Packit 534379
    
Packit 534379
    test_platform platform_;
Packit 534379
    test_system *system_;
Packit 534379
};
Packit 534379
Packit 534379
/**
Packit 534379
 * @test       invalid_loading_tests
Packit 534379
 * @brief      Test: load_board_plugin, unload_board_plugin
Packit 534379
 * @detail:    Given invalid params to load_board_plugin,
Packit 534379
 *                     the fn returns FPGA_INVALID_PARAM
Packit 534379
 *                     unload_board_plugin return FPGA_OK
Packit 534379
 */  
Packit 534379
TEST(fpgainfo_board_c, invalid_loading_tests) {
Packit 534379
    EXPECT_EQ(load_board_plugin(NULL, NULL), FPGA_INVALID_PARAM);
Packit 534379
Packit 534379
    EXPECT_EQ(unload_board_plugin(), FPGA_OK);
Packit 534379
}
Packit 534379
Packit 534379
/**
Packit 534379
 * @test       invalid_loading_tests
Packit 534379
 * @brief      Test: load_board_plugin
Packit 534379
 * @detail     Given valid filter and invalid token upon enumeration, 
Packit 534379
 *             load_board_plugin returns FPGA_INVALID_PARAM
Packit 534379
 */
Packit 534379
TEST_P(fpgainfo_board_c_p, load_board_plugin) {
Packit 534379
    void* dl_handle = NULL;
Packit 534379
    fpga_properties filter = NULL;
Packit 534379
    fpga_token tokens = NULL;
Packit 534379
    uint32_t matches = 0;
Packit 534379
Packit 534379
    ASSERT_EQ(fpgaGetProperties(NULL, &filter), FPGA_OK);
Packit 534379
    ASSERT_EQ(fpgaEnumerate(&filter, 1, &tokens, 1, &matches), FPGA_OK);
Packit 534379
    ASSERT_GT(matches, 0);
Packit 534379
Packit 534379
    EXPECT_EQ(load_board_plugin(&tokens, &dl_handle), FPGA_INVALID_PARAM);
Packit 534379
Packit 534379
    EXPECT_EQ(fpgaDestroyProperties(&filter), FPGA_OK);
Packit 534379
    EXPECT_EQ(fpgaDestroyToken(&tokens), FPGA_OK);
Packit 534379
}
Packit 534379
Packit 534379
/**
Packit 534379
 * @test       parse_mac_args0
Packit 534379
 * @brief      Test: parse_mac_args
Packit 534379
 * @details    When passed with valid command options, 
Packit 534379
 *             the fn returns 0. For invalid options, fn returns -1. 
Packit 534379
 */
Packit 534379
TEST_P(fpgainfo_board_c_p, parse_mac_args0) {
Packit 534379
    char zero[20];
Packit 534379
    char one[20];
Packit 534379
    char two[20];
Packit 534379
    char *argv[] = { zero, one, two };
Packit 534379
Packit 534379
    strcpy(zero, "fpgainfo");
Packit 534379
    strcpy(one, "mac");
Packit 534379
    EXPECT_EQ(parse_mac_args(2, argv), 0);
Packit 534379
Packit 534379
    strcpy(two, "-h");
Packit 534379
    EXPECT_EQ(parse_mac_args(3, argv), -1);
Packit 534379
Packit 534379
    strcpy(two, "-z");
Packit 534379
    EXPECT_EQ(parse_mac_args(3, argv), -1);
Packit 534379
}
Packit 534379
Packit 534379
/**
Packit 534379
 * @test       mac_filter
Packit 534379
 * @brief      Test: mac_filter
Packit 534379
 * @details    When passed with invalid command options, 
Packit 534379
 *             the fn returns FPGA_INVALID_PARAM. 
Packit 534379
 */
Packit 534379
TEST_P(fpgainfo_board_c_p, mac_filter) {
Packit 534379
    char zero[20];
Packit 534379
    char one[20];
Packit 534379
    char *argv[] = { zero, one };
Packit 534379
Packit 534379
    fpga_properties filter = NULL;
Packit 534379
    strcpy(zero, "fpgainfo");
Packit 534379
    strcpy(one, "mac");
Packit 534379
    EXPECT_EQ(mac_filter(&filter, 2, argv), FPGA_INVALID_PARAM);
Packit 534379
}
Packit 534379
Packit 534379
/**
Packit 534379
* @test       mac_command0
Packit 534379
* @brief      Test: mac_command
Packit 534379
* @details    When passed with invalid token, 
Packit 534379
*             the fn returns FPGA_INVALID_PARAM. 
Packit 534379
*/
Packit 534379
TEST_P(fpgainfo_board_c_p, mac_command0) {
Packit 534379
    char *argv[] = { };
Packit 534379
Packit 534379
    fpga_token tokens = NULL;
Packit 534379
    EXPECT_EQ(mac_command(&tokens, 0, 0, argv), FPGA_OK);
Packit 534379
}
Packit 534379
Packit 534379
/**
Packit 534379
* @test       mac_command1
Packit 534379
* @brief      Test: mac_command
Packit 534379
* @details    When passed with valid token and fails to get properties, 
Packit 534379
*             the fn returns FPGA_INVALID_PARAM. 
Packit 534379
*/
Packit 534379
TEST_P(fpgainfo_board_c_p, mac_command1) {
Packit 534379
    char *argv[] = { };
Packit 534379
Packit 534379
    fpga_properties filter = NULL;
Packit 534379
    fpga_token tokens = NULL;
Packit 534379
    uint32_t matches = 0, num_tokens = 0;
Packit 534379
Packit 534379
    ASSERT_EQ(fpgaGetProperties(NULL, &filter), FPGA_OK);
Packit 534379
    ASSERT_EQ(fpgaEnumerate(&filter, 1, &tokens, 1, &matches), FPGA_OK);
Packit 534379
    ASSERT_GT(matches, 0);
Packit 534379
Packit 534379
    EXPECT_EQ(mac_command(&tokens, num_tokens, 0, argv), FPGA_OK);
Packit 534379
Packit 534379
    EXPECT_EQ(fpgaDestroyProperties(&filter), FPGA_OK);
Packit 534379
    EXPECT_EQ(fpgaDestroyToken(&tokens), FPGA_OK);
Packit 534379
}
Packit 534379
Packit 534379
/**
Packit 534379
* @test       mac_info
Packit 534379
* @brief      Test: mac_info
Packit 534379
* @details    When passed with invalid token, 
Packit 534379
*             the fn returns FPGA_INVALID_PARAM. 
Packit 534379
*/
Packit 534379
TEST_P(fpgainfo_board_c_p, mac_info) {
Packit 534379
    fpga_token tokens = NULL;
Packit 534379
    EXPECT_EQ(mac_info(tokens), FPGA_INVALID_PARAM);
Packit 534379
}
Packit 534379
Packit 534379
/**
Packit 534379
 * @test       parse_phy_args0
Packit 534379
 * @brief      Test: parse_phy_args
Packit 534379
 * @details    When passed with valid command options, 
Packit 534379
 *             the fn returns 0. For invalid options, fn returns -1. 
Packit 534379
 */
Packit 534379
TEST_P(fpgainfo_board_c_p, parse_phy_args0) {
Packit 534379
    char zero[20];
Packit 534379
    char one[20];
Packit 534379
    char two[20];
Packit 534379
    char *argv[] = { zero, one, two };
Packit 534379
Packit 534379
    strcpy(zero, "fpgainfo");
Packit 534379
    strcpy(one, "phy");
Packit 534379
    EXPECT_EQ(parse_phy_args(2, argv), 0);
Packit 534379
Packit 534379
    strcpy(two, "-h");
Packit 534379
    EXPECT_EQ(parse_phy_args(3, argv), -1);
Packit 534379
Packit 534379
    strcpy(two, "-z");
Packit 534379
    EXPECT_EQ(parse_phy_args(3, argv), -1);
Packit 534379
}
Packit 534379
Packit 534379
/**
Packit 534379
 * @test       parse_phy_args0
Packit 534379
 * @brief      Test: parse_phy_args
Packit 534379
 * @details    When passed with valid command options, 
Packit 534379
 *             the fn returns 0. 
Packit 534379
 *             For invalid options, fn returns -1. 
Packit 534379
 */
Packit 534379
TEST_P(fpgainfo_board_c_p, parse_phy_args1) {
Packit 534379
    char zero[20];
Packit 534379
    char one[20];
Packit 534379
    char two[20];
Packit 534379
    char three[20];
Packit 534379
    char *argv[] = { zero, one, two, three};
Packit 534379
Packit 534379
    strcpy(zero, "fpgainfo");
Packit 534379
    strcpy(one, "phy");
Packit 534379
    strcpy(two, "-G");
Packit 534379
    strcpy(three, "all");
Packit 534379
    EXPECT_EQ(parse_phy_args(4, argv), 0);
Packit 534379
Packit 534379
    strcpy(three, "0");
Packit 534379
    EXPECT_EQ(parse_phy_args(4, argv), 0);
Packit 534379
Packit 534379
    strcpy(three, "1");
Packit 534379
    EXPECT_EQ(parse_phy_args(4, argv), 0);
Packit 534379
Packit 534379
    strcpy(three, "99");
Packit 534379
    EXPECT_EQ(parse_phy_args(4, argv), -1);
Packit 534379
}
Packit 534379
Packit 534379
/**
Packit 534379
 * @test       phy_filter
Packit 534379
 * @brief      Test: phy_filter
Packit 534379
 * @details    When passed with invalid command options, 
Packit 534379
 *             the fn returns FPGA_INVALID_PARAM. 
Packit 534379
 */
Packit 534379
TEST_P(fpgainfo_board_c_p, phy_filter) {
Packit 534379
    char zero[20];
Packit 534379
    char one[20];
Packit 534379
    char *argv[] = { zero, one };
Packit 534379
Packit 534379
    fpga_properties filter = NULL;
Packit 534379
    strcpy(zero, "fpgainfo");
Packit 534379
    strcpy(one, "phy");
Packit 534379
    EXPECT_EQ(phy_filter(&filter, 2, argv), FPGA_INVALID_PARAM);
Packit 534379
}
Packit 534379
Packit 534379
/**
Packit 534379
* @test       phy_command0
Packit 534379
* @brief      Test: phy_command
Packit 534379
* @details    The phy_command fn always returen FPGA_OK 
Packit 534379
*/
Packit 534379
TEST_P(fpgainfo_board_c_p, phy_command0) {
Packit 534379
    char *argv[] = { };
Packit 534379
Packit 534379
    fpga_token tokens = NULL;
Packit 534379
    EXPECT_EQ(phy_command(&tokens, 0, 0, argv), FPGA_OK);
Packit 534379
}
Packit 534379
Packit 534379
/**
Packit 534379
* @test       phy_command1
Packit 534379
* @brief      Test: phy_command
Packit 534379
* @details    The phy_command fn always returen FPGA_OK 
Packit 534379
*/
Packit 534379
TEST_P(fpgainfo_board_c_p, phy_command1) {
Packit 534379
    char *argv[] = { };
Packit 534379
Packit 534379
    fpga_properties filter = NULL;
Packit 534379
    fpga_token tokens = NULL;
Packit 534379
    uint32_t matches = 0, num_tokens = 0;
Packit 534379
Packit 534379
    ASSERT_EQ(fpgaGetProperties(NULL, &filter), FPGA_OK);
Packit 534379
    ASSERT_EQ(fpgaEnumerate(&filter, 1, &tokens, 1, &matches), FPGA_OK);
Packit 534379
    ASSERT_GT(matches, 0);
Packit 534379
Packit 534379
    EXPECT_EQ(phy_command(&tokens, num_tokens, 0, argv), FPGA_OK);
Packit 534379
Packit 534379
    EXPECT_EQ(fpgaDestroyProperties(&filter), FPGA_OK);
Packit 534379
    EXPECT_EQ(fpgaDestroyToken(&tokens), FPGA_OK);
Packit 534379
}
Packit 534379
Packit 534379
/**
Packit 534379
* @test       phy_group_info
Packit 534379
* @brief      Test: phy_group_info
Packit 534379
* @details    Given an invalid option to phy_grou_info, the 
Packit 534379
*             fn returns FPGA_INVALID_PARAM. 
Packit 534379
*/
Packit 534379
TEST_P(fpgainfo_board_c_p, phy_group_info) {
Packit 534379
    fpga_token tokens = NULL;
Packit 534379
    EXPECT_EQ(phy_group_info(tokens), FPGA_INVALID_PARAM);
Packit 534379
}
Packit 534379
Packit 534379
INSTANTIATE_TEST_CASE_P(fpgainfo_c, fpgainfo_board_c_p,
Packit 534379
                        ::testing::ValuesIn(test_platform::platforms({ "skx-p","dcp-rc","dcp-vc" })));
Packit 534379