Skip to content
Snippets Groups Projects
Commit 32ec8899 authored by Steven Murray's avatar Steven Murray
Browse files

Removed unused source file AcsLibrarySlotTest.cpp

parent 82b6ed7d
No related branches found
No related tags found
No related merge requests found
/*
* The CERN Tape Archive(CTA) project
* Copyright(C) 2015 CERN
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
*(at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "mediachanger/AcsLibrarySlot.hpp"
#include <gtest/gtest.h>
#include <memory>
namespace unitTests {
class cta_mediachanger_AcsLibrarySlotTest : public ::testing::Test {
protected:
virtual void SetUp() {
}
virtual void TearDown() {
}
};
TEST_F(cta_mediachanger_AcsLibrarySlotTest, goodDay) {
using namespace cta::mediachanger;
AcsLibrarySlot slot(11, 22, 33, 44);
ASSERT_EQ(TAPE_LIBRARY_TYPE_ACS, slot.getLibraryType());
ASSERT_EQ(std::string("acs11,22,33,44"), slot.str());
ASSERT_EQ((uint32_t)11, slot.getAcs());
ASSERT_EQ((uint32_t)22, slot.getLsm());
ASSERT_EQ((uint32_t)33, slot.getPanel());
ASSERT_EQ((uint32_t)44, slot.getDrive());
}
TEST_F(cta_mediachanger_AcsLibrarySlotTest, clone) {
using namespace cta::mediachanger;
std::unique_ptr<AcsLibrarySlot> slot1;
ASSERT_NO_THROW(slot1.reset(new AcsLibrarySlot(11, 22, 33, 44)));
ASSERT_EQ(TAPE_LIBRARY_TYPE_ACS, slot1->getLibraryType());
ASSERT_EQ(std::string("acs11,22,33,44"), slot1->str());
ASSERT_EQ((uint32_t)11, slot1->getAcs());
ASSERT_EQ((uint32_t)22, slot1->getLsm());
ASSERT_EQ((uint32_t)33, slot1->getPanel());
ASSERT_EQ((uint32_t)44, slot1->getDrive());
std::unique_ptr<AcsLibrarySlot> slot2;
ASSERT_NO_THROW(slot2.reset((AcsLibrarySlot*)slot1->clone()));
ASSERT_EQ(TAPE_LIBRARY_TYPE_ACS, slot2->getLibraryType());
ASSERT_EQ(std::string("acs11,22,33,44"), slot2->str());
ASSERT_EQ((uint32_t)11, slot2->getAcs());
ASSERT_EQ((uint32_t)22, slot2->getLsm());
ASSERT_EQ((uint32_t)33, slot2->getPanel());
ASSERT_EQ((uint32_t)44, slot2->getDrive());
}
} // namespace unitTests
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment