lasd/librerie/exercise2/zlasdtest/stack/stack.hpp

117 lines
4.0 KiB
C++
Raw Normal View History

2021-04-10 13:34:50 +02:00
#ifndef STACKTEST_HPP
#define STACKTEST_HPP
#include "../../stack/stack.hpp"
/* ************************************************************************** */
template <typename Data>
void PushC(uint& testnum, uint& testerr, lasd::Stack<Data>& stk, const Data& val) {
testnum++;
bool tst = true;
try {
std::cout << " " << testnum << " Push on the stack of the value \"" << val << "\": ";
stk.Push(val);
std::cout << "Correct!" << std::endl;
} catch(std::exception exc) {
std::cout << "\"" << exc.what() << "\": " << "Error!" << std::endl;
tst = false;
}
testerr += (1 - (uint) tst);
}
template <typename Data>
void PushM(uint& testnum, uint& testerr, lasd::Stack<Data>& stk, Data val) {
testnum++;
bool tst = true;
try {
std::cout << " " << testnum << " Push on the stack of the value \"" << val << "\": ";
stk.Push(std::move(val));
std::cout << "Correct!" << std::endl;
} catch(std::exception exc) {
std::cout << "\"" << exc.what() << "\": " << "Error!" << std::endl;
tst = false;
}
testerr += (1 - (uint) tst);
}
template <typename Data>
void Top(uint& testnum, uint& testerr, lasd::Stack<Data>& stk, bool chk, const Data& val) {
testnum++;
bool tst;
try {
std::cout << " " << testnum << " Top of the stack with value \"" << stk.Top() << "\": ";
std::cout << ((tst = ((stk.Top() == val) == chk)) ? "Correct" : "Error") << "!" << std::endl;
} catch(std::length_error exc) {
std::cout << exc.what() << "\": " << ((tst = !chk) ? "Correct" : "Error") << "!" << std::endl;
} catch(std::exception exc) {
tst = false;
std::cout << std::endl << "Wrong exception: " << exc.what() << "!" << std::endl;
}
testerr += (1 - (uint) tst);
}
template <typename Data>
void Pop(uint& testnum, uint& testerr, lasd::Stack<Data>& stk, bool chk) {
testnum++;
bool tst = true;
try {
std::cout << " " << testnum << " Pop from the stack: ";
stk.Pop();
std::cout << ((tst = chk) ? "Correct" : "Error") << "!" << std::endl;
} catch(std::length_error exc) {
std::cout << "\"" << exc.what() << "\": " << ((tst = !chk) ? "Correct" : "Error") << "!" << std::endl;
} catch(std::exception exc) {
tst = false;
std::cout << std::endl << "Wrong exception: " << exc.what() << "!" << std::endl;
}
testerr += (1 - (uint) tst);
}
template <typename Data>
void TopNPop(uint& testnum, uint& testerr, lasd::Stack<Data>& stk, bool chk, const Data& val) {
testnum++;
bool tst;
try {
std::cout << " " << testnum << " TopNPop from the stack with value \"" << stk.Top() << "\": ";
std::cout << ((tst = ((stk.TopNPop() == val) == chk)) ? "Correct" : "Error") << "!" << std::endl;
} catch(std::length_error exc) {
std::cout << exc.what() << "\": " << ((tst = !chk) ? "Correct" : "Error") << "!" << std::endl;
} catch(std::exception exc) {
tst = false;
std::cout << std::endl << "Wrong exception: " << exc.what() << "!" << std::endl;
}
testerr += (1 - (uint) tst);
}
template <typename Stk>
void EqualStack(uint& testnum, uint& testerr, const Stk& stk1, const Stk& stk2, bool chk) {
testnum++;
bool tst;
try {
std::cout << " " << testnum << " The two stacks are " << ((tst = (stk1 == stk2)) ? "" : "not ") << "equal: ";
std::cout << ((tst = (tst == chk)) ? "Correct" : "Error") << "!" << std::endl;
} catch(std::exception exc) {
std::cout << "\"" << exc.what() << "\": " << ((tst = !chk) ? "Correct" : "Error") << "!" << std::endl;
}
testerr += (1 - (uint) tst);
}
template <typename Stk>
void NonEqualStack(uint& testnum, uint& testerr, const Stk& stk1, const Stk& stk2, bool chk) {
testnum++;
bool tst;
try {
std::cout << " " << testnum << " The two stacks are " << ((tst = (stk1 != stk2)) ? "not " : "") << "equal: ";
std::cout << ((tst = (tst == chk)) ? "Correct" : "Error") << "!" << std::endl;
} catch(std::exception exc) {
std::cout << "\"" << exc.what() << "\": " << ((tst = !chk) ? "Correct" : "Error") << "!" << std::endl;
}
testerr += (1 - (uint) tst);
}
/* ************************************************************************** */
#endif