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

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

using ls::std::io::NewLine;
using ls::std::io::SectionPairDocumentValidator;
using std::string;
using test::io::SectionPairDocumentProvider;
using testing::Test;
using testing::TestWithParam;
using testing::Values;

namespace
{
  class SectionPairDocumentValidatorTest : public Test
  {
    public:

      SectionPairDocumentValidatorTest() = default;
      ~SectionPairDocumentValidatorTest() override = default;
  };

  class SectionPairDocumentValidatorTest_LineBreakTest : public TestWithParam<string>
  {
    public:

      SectionPairDocumentValidatorTest_LineBreakTest() = default;
      ~SectionPairDocumentValidatorTest_LineBreakTest() override = default;
  };

  class SectionPairDocumentValidatorTest_ValidArgumentTest : public TestWithParam<string>
  {
    public:

      SectionPairDocumentValidatorTest_ValidArgumentTest() = default;
      ~SectionPairDocumentValidatorTest_ValidArgumentTest() override = default;
  };

  class SectionPairDocumentValidatorTest_InvalidArgumentTest : public TestWithParam<string>
  {
    public:

      SectionPairDocumentValidatorTest_InvalidArgumentTest() = default;
      ~SectionPairDocumentValidatorTest_InvalidArgumentTest() override = default;
  };

  TEST_F(SectionPairDocumentValidatorTest, getClassName)
  {
    ASSERT_STREQ("SectionPairDocumentValidator", SectionPairDocumentValidator{"tmp-key"}.getClassName().c_str());
  }

  TEST_P(SectionPairDocumentValidatorTest_LineBreakTest, isValid)
  {
    ASSERT_TRUE(SectionPairDocumentValidator{GetParam()}.isValid());
  }

  TEST_P(SectionPairDocumentValidatorTest_ValidArgumentTest, isValid)
  {
    ASSERT_TRUE(SectionPairDocumentValidator{GetParam()}.isValid());
  }

  TEST_P(SectionPairDocumentValidatorTest_InvalidArgumentTest, isValid_not_valid)
  {
    ASSERT_FALSE(SectionPairDocumentValidator{GetParam()}.isValid());
  }

  INSTANTIATE_TEST_SUITE_P(LineBreakTest, SectionPairDocumentValidatorTest_LineBreakTest, Values(SectionPairDocumentProvider::createSerializedDocument(NewLine::getWindowsNewLine()), SectionPairDocumentProvider::createSerializedDocument(NewLine::getUnixNewLine())));
  INSTANTIATE_TEST_SUITE_P(InvalidArgumentTest, SectionPairDocumentValidatorTest_InvalidArgumentTest, Values("\n[general]\n\ncolors:\nblue\n"));
  INSTANTIATE_TEST_SUITE_P(ValidArgumentTest, SectionPairDocumentValidatorTest_ValidArgumentTest, Values(SectionPairDocumentProvider::createSerializedDocumentComputerExample(NewLine::get())));
}