/*
* Author:          Patrick-Christopher Mattulat
* Company:         Lynar Studios
* E-Mail:          webmaster@lynarstudios.com
* Created:         2023-02-10
* Changed:         2023-02-10
*
* */

#include <gtest/gtest.h>
#include <ls-std/ls-std-core.hpp>
#include <string>

using namespace ls::std::core;
using namespace ::std;

namespace
{
  class IndexOutOfBoundsEvaluatorTest : public ::testing::Test
  {
    protected:

      IndexOutOfBoundsEvaluatorTest() = default;
      ~IndexOutOfBoundsEvaluatorTest() override = default;

      void SetUp() override
      {}

      void TearDown() override
      {}
  };

  TEST_F(IndexOutOfBoundsEvaluatorTest, evaluate)
  {
    EXPECT_THROW(
        {
          try
          {
            IndexOutOfBoundsEvaluator(3, 2).evaluate();
          }
          catch (const IndexOutOfBoundsException &_exception)
          {
            string message = _exception.what();
            ASSERT_STREQ("IndexOutOfBoundsException thrown - provided index is out of bounds!", message.c_str());
            throw;
          }
        },
        IndexOutOfBoundsException);
  }

  TEST_F(IndexOutOfBoundsEvaluatorTest, evaluate_dedicated_message)
  {
    EXPECT_THROW(
        {
          try
          {
            IndexOutOfBoundsEvaluator(3, 2, "index 3 is not in range of the containers size, which is 2!").evaluate();
          }
          catch (const IndexOutOfBoundsException &_exception)
          {
            string message = _exception.what();
            ASSERT_STREQ("IndexOutOfBoundsException thrown - index 3 is not in range of the containers size, which is 2!", message.c_str());
            throw;
          }
        },
        IndexOutOfBoundsException);
  }
}