1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
/*
* Copyright 2020 Axel Waggershauser
*/
// SPDX-License-Identifier: Apache-2.0
#include "BarcodeFormat.h"
#include "gtest/gtest.h"
#include <stdexcept>
#include <vector>
using namespace ZXing;
TEST(BarcodeFormatTest, BarcodeFormat)
{
using namespace std::literals;
EXPECT_EQ(ToString(BarcodeFormat::QRCode), "QRCode"s);
EXPECT_EQ(ToString(BarcodeFormat::None), "None"s);
EXPECT_EQ(ToString(BarcodeFormat::DataMatrix | BarcodeFormat::EAN13), "DataMatrix|EAN-13");
EXPECT_EQ(BarcodeFormat::EAN8, BarcodeFormatFromString("EAN_8"));
EXPECT_EQ(BarcodeFormat::EAN8, BarcodeFormatFromString("EAN-8"));
EXPECT_EQ(BarcodeFormat::EAN8, BarcodeFormatFromString("EAN8"));
EXPECT_EQ(BarcodeFormat::EAN8, BarcodeFormatFromString("ean8"));
EXPECT_EQ(BarcodeFormat::None, BarcodeFormatFromString("invalid-string"));
EXPECT_EQ(BarcodeFormat::None, BarcodeFormatsFromString(""));
auto formats = BarcodeFormat::EAN8 | BarcodeFormat::ITF;
EXPECT_EQ(formats, BarcodeFormatsFromString("EAN-8,ITF"));
EXPECT_EQ(formats, BarcodeFormatsFromString("EAN-8, ITF"));
EXPECT_EQ(formats, BarcodeFormatsFromString("EAN-8 ITF"));
EXPECT_EQ(formats, BarcodeFormatsFromString("ean8|itf"));
auto f1 = std::vector<BarcodeFormat>(formats.begin(), formats.end());
auto f2 = std::vector<BarcodeFormat>{BarcodeFormat::EAN8, BarcodeFormat::ITF};
EXPECT_EQ(f1, f2);
EXPECT_THROW(BarcodeFormatsFromString("ITF, invalid-string"), std::invalid_argument);
}
|