Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 


Quelle  TestPluralRules.cpp   Sprache: C

 
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */


#include "gtest/gtest.h"
#include "mozilla/Vector.h"
#include "mozilla/intl/PluralRules.h"

#define TEST_SELECT(actual, expected)     \
  do {                                    \
    ASSERT_TRUE(actual.isOk());           \
    ASSERT_EQ(actual.unwrap(), expected); \
  } while (false)

namespace mozilla {
namespace intl {

TEST(IntlPluralRules, CategoriesEnCardinal)
{
  PluralRulesOptions defaultOptions;

  auto prResult = PluralRules::TryCreate("en", defaultOptions);
  ASSERT_TRUE(prResult.isOk());
  auto pr = prResult.unwrap();

  auto catResult = pr->Categories();
  ASSERT_TRUE(catResult.isOk());
  auto categories = catResult.unwrap();

  ASSERT_EQ(categories.size(), 2u);
  ASSERT_TRUE(categories.contains(PluralRules::Keyword::One));
  ASSERT_TRUE(categories.contains(PluralRules::Keyword::Other));
}

TEST(IntlPluralRules, CategoriesEnOrdinal)
{
  PluralRulesOptions options;
  options.mPluralType = PluralRules::Type::Ordinal;

  auto prResult = PluralRules::TryCreate("en", options);
  ASSERT_TRUE(prResult.isOk());
  auto pr = prResult.unwrap();

  auto catResult = pr->Categories();
  ASSERT_TRUE(catResult.isOk());
  auto categories = catResult.unwrap();

  ASSERT_EQ(categories.size(), 4u);
  ASSERT_TRUE(categories.contains(PluralRules::Keyword::Few));
  ASSERT_TRUE(categories.contains(PluralRules::Keyword::One));
  ASSERT_TRUE(categories.contains(PluralRules::Keyword::Other));
  ASSERT_TRUE(categories.contains(PluralRules::Keyword::Two));
}

TEST(IntlPluralRules, CategoriesCyCardinal)
{
  PluralRulesOptions defaultOptions;

  auto prResult = PluralRules::TryCreate("cy", defaultOptions);
  ASSERT_TRUE(prResult.isOk());
  auto pr = prResult.unwrap();

  auto catResult = pr->Categories();
  ASSERT_TRUE(catResult.isOk());
  auto categories = catResult.unwrap();

  ASSERT_EQ(categories.size(), 6u);
  ASSERT_TRUE(categories.contains(PluralRules::Keyword::Few));
  ASSERT_TRUE(categories.contains(PluralRules::Keyword::One));
  ASSERT_TRUE(categories.contains(PluralRules::Keyword::Other));
  ASSERT_TRUE(categories.contains(PluralRules::Keyword::Many));
  ASSERT_TRUE(categories.contains(PluralRules::Keyword::Two));
  ASSERT_TRUE(categories.contains(PluralRules::Keyword::Zero));
}

TEST(IntlPluralRules, CategoriesCyOrdinal)
{
  PluralRulesOptions options;
  options.mPluralType = PluralRules::Type::Ordinal;

  auto prResult = PluralRules::TryCreate("cy", options);
  ASSERT_TRUE(prResult.isOk());
  auto pr = prResult.unwrap();

  auto catResult = pr->Categories();
  ASSERT_TRUE(catResult.isOk());
  auto categories = catResult.unwrap();

  ASSERT_EQ(categories.size(), 6u);
  ASSERT_TRUE(categories.contains(PluralRules::Keyword::Few));
  ASSERT_TRUE(categories.contains(PluralRules::Keyword::One));
  ASSERT_TRUE(categories.contains(PluralRules::Keyword::Other));
  ASSERT_TRUE(categories.contains(PluralRules::Keyword::Many));
  ASSERT_TRUE(categories.contains(PluralRules::Keyword::Two));
  ASSERT_TRUE(categories.contains(PluralRules::Keyword::Zero));
}

TEST(IntlPluralRules, CategoriesBrCardinal)
{
  PluralRulesOptions defaultOptions;

  auto prResult = PluralRules::TryCreate("br", defaultOptions);
  ASSERT_TRUE(prResult.isOk());
  auto pr = prResult.unwrap();

  auto catResult = pr->Categories();
  ASSERT_TRUE(catResult.isOk());
  auto categories = catResult.unwrap();

  ASSERT_EQ(categories.size(), 5u);
  ASSERT_TRUE(categories.contains(PluralRules::Keyword::Few));
  ASSERT_TRUE(categories.contains(PluralRules::Keyword::One));
  ASSERT_TRUE(categories.contains(PluralRules::Keyword::Other));
  ASSERT_TRUE(categories.contains(PluralRules::Keyword::Many));
  ASSERT_TRUE(categories.contains(PluralRules::Keyword::Two));
}

TEST(IntlPluralRules, CategoriesBrOrdinal)
{
  PluralRulesOptions options;
  options.mPluralType = PluralRules::Type::Ordinal;

  auto prResult = PluralRules::TryCreate("br", options);
  ASSERT_TRUE(prResult.isOk());
  auto pr = prResult.unwrap();

  auto catResult = pr->Categories();
  ASSERT_TRUE(catResult.isOk());
  auto categories = catResult.unwrap();

  ASSERT_EQ(categories.size(), 1u);
  ASSERT_TRUE(categories.contains(PluralRules::Keyword::Other));
}

TEST(IntlPluralRules, CategoriesHsbCardinal)
{
  PluralRulesOptions defaultOptions;

  auto prResult = PluralRules::TryCreate("hsb", defaultOptions);
  ASSERT_TRUE(prResult.isOk());
  auto pr = prResult.unwrap();

  auto catResult = pr->Categories();
  ASSERT_TRUE(catResult.isOk());
  auto categories = catResult.unwrap();

  ASSERT_EQ(categories.size(), 4u);
  ASSERT_TRUE(categories.contains(PluralRules::Keyword::Few));
  ASSERT_TRUE(categories.contains(PluralRules::Keyword::One));
  ASSERT_TRUE(categories.contains(PluralRules::Keyword::Other));
  ASSERT_TRUE(categories.contains(PluralRules::Keyword::Two));
}

TEST(IntlPluralRules, CategoriesHsbOrdinal)
{
  PluralRulesOptions options;
  options.mPluralType = PluralRules::Type::Ordinal;

  auto prResult = PluralRules::TryCreate("hsb", options);
  ASSERT_TRUE(prResult.isOk());
  auto pr = prResult.unwrap();

  auto catResult = pr->Categories();
  ASSERT_TRUE(catResult.isOk());
  auto categories = catResult.unwrap();

  ASSERT_EQ(categories.size(), 1u);
  ASSERT_TRUE(categories.contains(PluralRules::Keyword::Other));
}

// PluralRules should define the sort order of the keywords.
// ICU returns these keywords in alphabetical order, so our implementation
// should do the same.
//
// https://github.com/tc39/ecma402/issues/578
TEST(IntlPluralRules, CategoriesSortOrder)
{
  PluralRulesOptions defaultOptions;

  auto prResult = PluralRules::TryCreate("cy", defaultOptions);
  ASSERT_TRUE(prResult.isOk());
  auto pr = prResult.unwrap();

  PluralRules::Keyword expected[] = {
      PluralRules::Keyword::Few, PluralRules::Keyword::Many,
      PluralRules::Keyword::One, PluralRules::Keyword::Other,
      PluralRules::Keyword::Two, PluralRules::Keyword::Zero,
  };

  // Categories() returns an EnumSet so we want to ensure it still iterates
  // over elements in the expected sorted order.
  size_t index = 0;

  auto catResult = pr->Categories();
  ASSERT_TRUE(catResult.isOk());
  auto categories = catResult.unwrap();

  for (const PluralRules::Keyword keyword : categories) {
    ASSERT_EQ(keyword, expected[index++]);
  }
}

// en Cardinal Plural Rules
//   one: i = 1 and v = 0 @integer 1
// other: @integer 0, 2~16, 100, 1000, 10000, 100000, 1000000, …
//        @decimal 0.0~1.5, 10.0, 100.0, 1000.0, 10000.0, 100000.0, 1000000.0, …
TEST(IntlPluralRules, SelectEnCardinal)
{
  PluralRulesOptions defaultOptions;

  auto prResult = PluralRules::TryCreate("en", defaultOptions);
  ASSERT_TRUE(prResult.isOk());
  auto pr = prResult.unwrap();

  TEST_SELECT(pr->Select(0.00), PluralRules::Keyword::Other);
  TEST_SELECT(pr->Select(1.00), PluralRules::Keyword::One);
  TEST_SELECT(pr->Select(1.01), PluralRules::Keyword::Other);
  TEST_SELECT(pr->Select(0.99), PluralRules::Keyword::Other);
}

// en Ordinal Plural Rules
//   one: n % 10 = 1 and n % 100 != 11
//        @integer 1, 21, 31, 41, 51, 61, 71, 81, 101, 1001, …,
//   two: n % 10 = 2 and n % 100 != 12
//        @integer 2, 22, 32, 42, 52, 62, 72, 82, 102, 1002, …,
//   few: n % 10 = 3 and n % 100 != 13
//        @integer 3, 23, 33, 43, 53, 63, 73, 83, 103, 1003, …,
// other: @integer 0, 4~18, 100, 1000, 10000, 100000, 1000000, …
TEST(IntlPluralRules, SelectEnOrdinal)
{
  PluralRulesOptions options;
  options.mPluralType = PluralRules::Type::Ordinal;

  auto prResult = PluralRules::TryCreate("en", options);
  ASSERT_TRUE(prResult.isOk());
  auto pr = prResult.unwrap();

  TEST_SELECT(pr->Select(01.00), PluralRules::Keyword::One);
  TEST_SELECT(pr->Select(21.00), PluralRules::Keyword::One);
  TEST_SELECT(pr->Select(31.00), PluralRules::Keyword::One);
  TEST_SELECT(pr->Select(41.00), PluralRules::Keyword::One);

  TEST_SELECT(pr->Select(02.00), PluralRules::Keyword::Two);
  TEST_SELECT(pr->Select(22.00), PluralRules::Keyword::Two);
  TEST_SELECT(pr->Select(32.00), PluralRules::Keyword::Two);
  TEST_SELECT(pr->Select(42.00), PluralRules::Keyword::Two);

  TEST_SELECT(pr->Select(03.00), PluralRules::Keyword::Few);
  TEST_SELECT(pr->Select(23.00), PluralRules::Keyword::Few);
  TEST_SELECT(pr->Select(33.00), PluralRules::Keyword::Few);
  TEST_SELECT(pr->Select(43.00), PluralRules::Keyword::Few);

  TEST_SELECT(pr->Select(00.00), PluralRules::Keyword::Other);
  TEST_SELECT(pr->Select(11.00), PluralRules::Keyword::Other);
  TEST_SELECT(pr->Select(12.00), PluralRules::Keyword::Other);
  TEST_SELECT(pr->Select(13.00), PluralRules::Keyword::Other);
}

// cy Cardinal Plural Rules
//  zero: n = 0 @integer 0 @decimal 0.0, 0.00, 0.000, 0.0000,
//   one: n = 1 @integer 1 @decimal 1.0, 1.00, 1.000, 1.0000,
//   two: n = 2 @integer 2 @decimal 2.0, 2.00, 2.000, 2.0000,
//   few: n = 3 @integer 3 @decimal 3.0, 3.00, 3.000, 3.0000,
//  many: n = 6 @integer 6 @decimal 6.0, 6.00, 6.000, 6.0000,
// other: @integer 4, 5, 7~20, 100, 1000, 10000, 100000, 1000000, …
//        @decimal 0.1~0.9, 1.1~1.7, 10.0, 100.0, 1000.0, 10000.0, 100000.0, …
TEST(IntlPluralRules, SelectCyCardinal)
{
  PluralRulesOptions defaultOptions;

  auto prResult = PluralRules::TryCreate("cy", defaultOptions);
  ASSERT_TRUE(prResult.isOk());
  auto pr = prResult.unwrap();

  TEST_SELECT(pr->Select(0.00), PluralRules::Keyword::Zero);
  TEST_SELECT(pr->Select(1.00), PluralRules::Keyword::One);
  TEST_SELECT(pr->Select(2.00), PluralRules::Keyword::Two);
  TEST_SELECT(pr->Select(3.00), PluralRules::Keyword::Few);
  TEST_SELECT(pr->Select(4.00), PluralRules::Keyword::Other);
  TEST_SELECT(pr->Select(5.00), PluralRules::Keyword::Other);
  TEST_SELECT(pr->Select(6.00), PluralRules::Keyword::Many);
  TEST_SELECT(pr->Select(7.00), PluralRules::Keyword::Other);
}

// cy Ordinal Plural Rules
//  zero: n = 0,7,8,9 @integer 0, 7~9,
//   one: n = 1 @integer 1,
//   two: n = 2 @integer 2,
//   few: n = 3,4 @integer 3, 4,
//  many: n = 5,6 @integer 5, 6,
// other: @integer 10~25, 100, 1000, 10000, 100000, 1000000, …
TEST(IntlPluralRules, SelectCyOrdinal)
{
  PluralRulesOptions options;
  options.mPluralType = PluralRules::Type::Ordinal;

  auto prResult = PluralRules::TryCreate("cy", options);
  ASSERT_TRUE(prResult.isOk());
  auto pr = prResult.unwrap();

  TEST_SELECT(pr->Select(0.00), PluralRules::Keyword::Zero);
  TEST_SELECT(pr->Select(7.00), PluralRules::Keyword::Zero);
  TEST_SELECT(pr->Select(8.00), PluralRules::Keyword::Zero);
  TEST_SELECT(pr->Select(9.00), PluralRules::Keyword::Zero);

  TEST_SELECT(pr->Select(1.00), PluralRules::Keyword::One);

  TEST_SELECT(pr->Select(2.00), PluralRules::Keyword::Two);

  TEST_SELECT(pr->Select(3.00), PluralRules::Keyword::Few);
  TEST_SELECT(pr->Select(4.00), PluralRules::Keyword::Few);

  TEST_SELECT(pr->Select(5.00), PluralRules::Keyword::Many);
  TEST_SELECT(pr->Select(6.00), PluralRules::Keyword::Many);

  TEST_SELECT(pr->Select(10.00), PluralRules::Keyword::Other);
  TEST_SELECT(pr->Select(11.00), PluralRules::Keyword::Other);
}

// br Cardinal Plural Rules
//   one: n % 10 = 1 and n % 100 != 11,71,91
//        @integer 1, 21, 31, 41, 51, 61, 81, 101, 1001, …
//        @decimal 1.0, 21.0, 31.0, 41.0, 51.0, 61.0, 81.0, 101.0, 1001.0, …
//   two: n % 10 = 2 and n % 100 != 12,72,92
//        @integer 2, 22, 32, 42, 52, 62, 82, 102, 1002, …
//        @decimal 2.0, 22.0, 32.0, 42.0, 52.0, 62.0, 82.0, 102.0, 1002.0, …
//   few: n % 10 = 3..4,9 and n % 100 != 10..19,70..79,90..99
//        @integer 3, 4, 9, 23, 24, 29, 33, 34, 39, 43, 44, 49, 103, 1003, …
//        @decimal 3.0, 4.0, 9.0, 23.0, 24.0, 29.0, 33.0, 34.0, 103.0, 1003.0, …
//  many: n != 0 and n % 1000000 = 0
//        @integer 1000000, …
//        @decimal 1000000.0, 1000000.00, 1000000.000, 1000000.0000, …
// other: @integer 0, 5~8, 10~20, 100, 1000, 10000, 100000, …
//        @decimal 0.0~0.9, 1.1~1.6, 10.0, 100.0, 1000.0, 10000.0, 100000.0, …
TEST(IntlPluralRules, SelectBrCardinal)
{
  PluralRulesOptions defaultOptions;

  auto prResult = PluralRules::TryCreate("br", defaultOptions);
  ASSERT_TRUE(prResult.isOk());
  auto pr = prResult.unwrap();

  TEST_SELECT(pr->Select(00.00), PluralRules::Keyword::Other);

  TEST_SELECT(pr->Select(01.00), PluralRules::Keyword::One);
  TEST_SELECT(pr->Select(11.00), PluralRules::Keyword::Other);
  TEST_SELECT(pr->Select(21.00), PluralRules::Keyword::One);
  TEST_SELECT(pr->Select(31.00), PluralRules::Keyword::One);

  TEST_SELECT(pr->Select(02.00), PluralRules::Keyword::Two);
  TEST_SELECT(pr->Select(12.00), PluralRules::Keyword::Other);
  TEST_SELECT(pr->Select(22.00), PluralRules::Keyword::Two);
  TEST_SELECT(pr->Select(32.00), PluralRules::Keyword::Two);

  TEST_SELECT(pr->Select(03.00), PluralRules::Keyword::Few);
  TEST_SELECT(pr->Select(04.00), PluralRules::Keyword::Few);
  TEST_SELECT(pr->Select(09.00), PluralRules::Keyword::Few);
  TEST_SELECT(pr->Select(23.00), PluralRules::Keyword::Few);

  TEST_SELECT(pr->Select(1000000), PluralRules::Keyword::Many);

  TEST_SELECT(pr->Select(999999), PluralRules::Keyword::Other);
  TEST_SELECT(pr->Select(1000005), PluralRules::Keyword::Other);
}

// br Ordinal Plural Rules
// br has no rules for Ordinal, so everything is PluralRules::Keyword::Other.
TEST(IntlPluralRules, SelectBrOrdinal)
{
  PluralRulesOptions options;
  options.mPluralType = PluralRules::Type::Ordinal;

  auto prResult = PluralRules::TryCreate("br", options);
  ASSERT_TRUE(prResult.isOk());
  auto pr = prResult.unwrap();

  TEST_SELECT(pr->Select(00.00), PluralRules::Keyword::Other);

  TEST_SELECT(pr->Select(01.00), PluralRules::Keyword::Other);
  TEST_SELECT(pr->Select(11.00), PluralRules::Keyword::Other);
  TEST_SELECT(pr->Select(21.00), PluralRules::Keyword::Other);
  TEST_SELECT(pr->Select(31.00), PluralRules::Keyword::Other);

  TEST_SELECT(pr->Select(02.00), PluralRules::Keyword::Other);
  TEST_SELECT(pr->Select(12.00), PluralRules::Keyword::Other);
  TEST_SELECT(pr->Select(22.00), PluralRules::Keyword::Other);
  TEST_SELECT(pr->Select(32.00), PluralRules::Keyword::Other);

  TEST_SELECT(pr->Select(03.00), PluralRules::Keyword::Other);
  TEST_SELECT(pr->Select(04.00), PluralRules::Keyword::Other);
  TEST_SELECT(pr->Select(09.00), PluralRules::Keyword::Other);
  TEST_SELECT(pr->Select(23.00), PluralRules::Keyword::Other);

  TEST_SELECT(pr->Select(1000000), PluralRules::Keyword::Other);

  TEST_SELECT(pr->Select(999999), PluralRules::Keyword::Other);
  TEST_SELECT(pr->Select(1000005), PluralRules::Keyword::Other);
}

// hsb Cardinal Plural Rules
//   one: v = 0 and i % 100 = 1 or f % 100 = 1
//        @integer 1, 101, 201, 301, 401, 501, 601, 701, 1001, …
//        @decimal 0.1, 1.1, 2.1, 3.1, 4.1, 5.1, 6.1, 7.1, 10.1, 100.1, 1000.1,
//        …,
//   two: v = 0 and i % 100 = 2 or f % 100 = 2
//        @integer 2, 102, 202, 302, 402, 502, 602, 702, 1002, …
//        @decimal 0.2, 1.2, 2.2, 3.2, 4.2, 5.2, 6.2, 7.2, 10.2, 100.2, 1000.2,
//        …,
//   few: v = 0 and i % 100 = 3..4 or f % 100 = 3..4
//        @integer 3, 4, 103, 104, 203, 204, 303, 304, 403, 404, 503, 504, 603,
//        604, 703, 704, 1003, …
//        @decimal 0.3,
//        0.4, 1.3, 1.4, 2.3, 2.4, 3.3, 3.4, 4.3, 4.4, 5.3, 5.4, 6.3, 6.4, 7.3, 7.4,
//        10.3, 100.3, 1000.3, …,
// other: @integer 0, 5~19, 100, 1000, 10000, 100000, 1000000, …
//        @decimal 0.0, 0.5~1.0, 1.5~2.0, 2.5~2.7, 10.0, 100.0, 1000.0, 10000.0,
//        100000.0, 1000000.0, …
TEST(IntlPluralRules, SelectHsbCardinal)
{
  PluralRulesOptions defaultOptions;

  auto prResult = PluralRules::TryCreate("hsb", defaultOptions);
  ASSERT_TRUE(prResult.isOk());
  auto pr = prResult.unwrap();

  TEST_SELECT(pr->Select(1.00), PluralRules::Keyword::One);
  TEST_SELECT(pr->Select(101.00), PluralRules::Keyword::One);

  TEST_SELECT(pr->Select(2.00), PluralRules::Keyword::Two);
  TEST_SELECT(pr->Select(102.00), PluralRules::Keyword::Two);

  TEST_SELECT(pr->Select(3.00), PluralRules::Keyword::Few);
  TEST_SELECT(pr->Select(4.00), PluralRules::Keyword::Few);
  TEST_SELECT(pr->Select(103.00), PluralRules::Keyword::Few);

  TEST_SELECT(pr->Select(0.00), PluralRules::Keyword::Other);
  TEST_SELECT(pr->Select(5.00), PluralRules::Keyword::Other);
  TEST_SELECT(pr->Select(19.00), PluralRules::Keyword::Other);
  TEST_SELECT(pr->Select(100.00), PluralRules::Keyword::Other);
}

// hsb Ordinal Plural Rules
// other: @integer 0~15, 100, 1000, 10000, 100000, 1000000, …
TEST(IntlPluralRules, SelectHsbOrdinal)
{
  PluralRulesOptions options;
  options.mPluralType = PluralRules::Type::Ordinal;

  auto prResult = PluralRules::TryCreate("hsb", options);
  ASSERT_TRUE(prResult.isOk());
  auto pr = prResult.unwrap();

  TEST_SELECT(pr->Select(00.00), PluralRules::Keyword::Other);

  TEST_SELECT(pr->Select(01.00), PluralRules::Keyword::Other);
  TEST_SELECT(pr->Select(11.00), PluralRules::Keyword::Other);
  TEST_SELECT(pr->Select(21.00), PluralRules::Keyword::Other);
  TEST_SELECT(pr->Select(31.00), PluralRules::Keyword::Other);

  TEST_SELECT(pr->Select(02.00), PluralRules::Keyword::Other);
  TEST_SELECT(pr->Select(12.00), PluralRules::Keyword::Other);
  TEST_SELECT(pr->Select(22.00), PluralRules::Keyword::Other);
  TEST_SELECT(pr->Select(32.00), PluralRules::Keyword::Other);

  TEST_SELECT(pr->Select(03.00), PluralRules::Keyword::Other);
  TEST_SELECT(pr->Select(04.00), PluralRules::Keyword::Other);
  TEST_SELECT(pr->Select(09.00), PluralRules::Keyword::Other);
  TEST_SELECT(pr->Select(23.00), PluralRules::Keyword::Other);

  TEST_SELECT(pr->Select(1000000), PluralRules::Keyword::Other);

  TEST_SELECT(pr->Select(999999), PluralRules::Keyword::Other);
  TEST_SELECT(pr->Select(1000005), PluralRules::Keyword::Other);
}

TEST(IntlPluralRules, DefaultFractionDigits)
{
  PluralRulesOptions defaultOptions;

  auto prResult = PluralRules::TryCreate("en", defaultOptions);
  ASSERT_TRUE(prResult.isOk());
  auto pr = prResult.unwrap();

  TEST_SELECT(pr->Select(1.000), PluralRules::Keyword::One);

  TEST_SELECT(pr->Select(1.100), PluralRules::Keyword::Other);
  TEST_SELECT(pr->Select(1.010), PluralRules::Keyword::Other);
  TEST_SELECT(pr->Select(1.001), PluralRules::Keyword::Other);

  TEST_SELECT(pr->Select(0.900), PluralRules::Keyword::Other);
  TEST_SELECT(pr->Select(0.990), PluralRules::Keyword::Other);
  TEST_SELECT(pr->Select(0.999), PluralRules::Keyword::Other);
}

TEST(IntlPluralRules, MaxFractionDigitsZero)
{
  PluralRulesOptions options;
  options.mFractionDigits = Some(std::pair<uint32_t, uint32_t>(0, 0));

  auto prResult = PluralRules::TryCreate("en", options);
  ASSERT_TRUE(prResult.isOk());
  auto pr = prResult.unwrap();

  TEST_SELECT(pr->Select(1.000), PluralRules::Keyword::One);
  TEST_SELECT(pr->Select(1.100), PluralRules::Keyword::One);
  TEST_SELECT(pr->Select(1.010), PluralRules::Keyword::One);
  TEST_SELECT(pr->Select(1.001), PluralRules::Keyword::One);
  TEST_SELECT(pr->Select(0.900), PluralRules::Keyword::One);
  TEST_SELECT(pr->Select(0.990), PluralRules::Keyword::One);
  TEST_SELECT(pr->Select(0.999), PluralRules::Keyword::One);
}

TEST(IntlPluralRules, MaxFractionDigitsOne)
{
  PluralRulesOptions options;
  options.mFractionDigits = Some(std::pair<uint32_t, uint32_t>(0, 1));

  auto prResult = PluralRules::TryCreate("en", options);
  ASSERT_TRUE(prResult.isOk());
  auto pr = prResult.unwrap();

  TEST_SELECT(pr->Select(1.000), PluralRules::Keyword::One);
  TEST_SELECT(pr->Select(1.010), PluralRules::Keyword::One);
  TEST_SELECT(pr->Select(1.001), PluralRules::Keyword::One);
  TEST_SELECT(pr->Select(0.990), PluralRules::Keyword::One);
  TEST_SELECT(pr->Select(0.999), PluralRules::Keyword::One);

  TEST_SELECT(pr->Select(1.100), PluralRules::Keyword::Other);
  TEST_SELECT(pr->Select(0.900), PluralRules::Keyword::Other);
}

TEST(IntlPluralRules, MaxSignificantDigitsOne)
{
  PluralRulesOptions options;
  options.mSignificantDigits = Some(std::pair<uint32_t, uint32_t>(1, 1));

  auto prResult = PluralRules::TryCreate("en", options);
  ASSERT_TRUE(prResult.isOk());
  auto pr = prResult.unwrap();

  TEST_SELECT(pr->Select(1.000), PluralRules::Keyword::One);
  TEST_SELECT(pr->Select(1.100), PluralRules::Keyword::One);
  TEST_SELECT(pr->Select(1.010), PluralRules::Keyword::One);
  TEST_SELECT(pr->Select(1.001), PluralRules::Keyword::One);
  TEST_SELECT(pr->Select(0.990), PluralRules::Keyword::One);
  TEST_SELECT(pr->Select(0.999), PluralRules::Keyword::One);

  TEST_SELECT(pr->Select(0.900), PluralRules::Keyword::Other);
}

TEST(IntlPluralRules, MaxFractionDigitsTwo)
{
  PluralRulesOptions options;
  options.mFractionDigits = Some(std::pair<uint32_t, uint32_t>(0, 2));

  auto prResult = PluralRules::TryCreate("en", options);
  ASSERT_TRUE(prResult.isOk());
  auto pr = prResult.unwrap();

  TEST_SELECT(pr->Select(1.000), PluralRules::Keyword::One);
  TEST_SELECT(pr->Select(1.001), PluralRules::Keyword::One);
  TEST_SELECT(pr->Select(0.999), PluralRules::Keyword::One);

  TEST_SELECT(pr->Select(1.100), PluralRules::Keyword::Other);
  TEST_SELECT(pr->Select(1.010), PluralRules::Keyword::Other);
  TEST_SELECT(pr->Select(0.900), PluralRules::Keyword::Other);
  TEST_SELECT(pr->Select(0.990), PluralRules::Keyword::Other);
}

TEST(IntlPluralRules, MaxSignificantDigitsTwo)
{
  PluralRulesOptions options;
  options.mSignificantDigits = Some(std::pair<uint32_t, uint32_t>(1, 2));

  auto prResult = PluralRules::TryCreate("en", options);
  ASSERT_TRUE(prResult.isOk());
  auto pr = prResult.unwrap();

  TEST_SELECT(pr->Select(1.000), PluralRules::Keyword::One);
  TEST_SELECT(pr->Select(1.010), PluralRules::Keyword::One);
  TEST_SELECT(pr->Select(1.001), PluralRules::Keyword::One);
  TEST_SELECT(pr->Select(0.999), PluralRules::Keyword::One);

  TEST_SELECT(pr->Select(1.100), PluralRules::Keyword::Other);
  TEST_SELECT(pr->Select(0.900), PluralRules::Keyword::Other);
  TEST_SELECT(pr->Select(0.990), PluralRules::Keyword::Other);
}

// en Plural Range Rules
//   other: one other
//   other: other one
//   other: other other
TEST(IntlPluralRules, SelectRangeEn)
{
  for (auto type : {PluralRules::Type::Cardinal, PluralRules::Type::Ordinal}) {
    PluralRulesOptions options;
    options.mPluralType = type;
    auto prResult = PluralRules::TryCreate("en", options);
    ASSERT_TRUE(prResult.isOk());
    auto pr = prResult.unwrap();

    TEST_SELECT(pr->SelectRange(0, 0), PluralRules::Keyword::Other);
    TEST_SELECT(pr->SelectRange(0, 1), PluralRules::Keyword::Other);
    TEST_SELECT(pr->SelectRange(0, 2), PluralRules::Keyword::Other);
    TEST_SELECT(pr->SelectRange(1, 1), PluralRules::Keyword::Other);
    TEST_SELECT(pr->SelectRange(1, 2), PluralRules::Keyword::Other);
    TEST_SELECT(pr->SelectRange(1, 10), PluralRules::Keyword::Other);
  }
}

// fr Cardinal Plural Rules
//   one: i = 0,1
//        @integer 0, 1
//        @decimal 0.0~1.5
//   many: e = 0 and i != 0 and i % 1000000 = 0 and v = 0 or e != 0..5
//         @integer 1000000, 1c6, 2c6, 3c6, 4c6, 5c6, 6c6, …
//         @decimal 1.0000001c6, 1.1c6, 2.0000001c6, 2.1c6, 3.0000001c6, 3.1c6,
//         …
//   other: @integer 2~17, 100, 1000, 10000, 100000, 1c3, 2c3, 3c3, 4c3, 5c3,
//   6c3, …
//          @decimal 2.0~3.5, 10.0, 100.0, 1000.0, 10000.0, 100000.0,
//          1000000.0, 1.0001c3, 1.1c3, 2.0001c3, 2.1c3, 3.0001c3, 3.1c3, …
//
// fr Plural Range Rules
//   one: one one
//   other: one other
//   other: other other
TEST(IntlPluralRules, SelectRangeFrCardinal)
{
  PluralRulesOptions options;
  options.mPluralType = PluralRules::Type::Cardinal;
  auto prResult = PluralRules::TryCreate("fr", options);
  ASSERT_TRUE(prResult.isOk());
  auto pr = prResult.unwrap();

  TEST_SELECT(pr->SelectRange(0, 0), PluralRules::Keyword::One);
  TEST_SELECT(pr->SelectRange(0, 1), PluralRules::Keyword::One);
  TEST_SELECT(pr->SelectRange(0, 2), PluralRules::Keyword::Other);
  TEST_SELECT(pr->SelectRange(1, 1), PluralRules::Keyword::One);
  TEST_SELECT(pr->SelectRange(1, 2), PluralRules::Keyword::Other);
  TEST_SELECT(pr->SelectRange(1, 10), PluralRules::Keyword::Other);
  TEST_SELECT(pr->SelectRange(1, 1000000), PluralRules::Keyword::Other);
}

// fr Ordinal Plural Rules
//   one: n = 1 @integer 1
//   other: @integer 0, 2~16, 100, 1000, 10000, 100000, 1000000, …
//
// fr Plural Range Rules
//   one: one one
//   other: one other
//   other: other other
TEST(IntlPluralRules, SelectRangeFrOrdinal)
{
  PluralRulesOptions options;
  options.mPluralType = PluralRules::Type::Ordinal;
  auto prResult = PluralRules::TryCreate("fr", options);
  ASSERT_TRUE(prResult.isOk());
  auto pr = prResult.unwrap();

  TEST_SELECT(pr->SelectRange(0, 0), PluralRules::Keyword::Other);
  TEST_SELECT(pr->SelectRange(0, 1), PluralRules::Keyword::Other);
  TEST_SELECT(pr->SelectRange(0, 2), PluralRules::Keyword::Other);
  TEST_SELECT(pr->SelectRange(1, 1), PluralRules::Keyword::One);
  TEST_SELECT(pr->SelectRange(1, 2), PluralRules::Keyword::Other);
  TEST_SELECT(pr->SelectRange(1, 10), PluralRules::Keyword::Other);
  TEST_SELECT(pr->SelectRange(1, 1000000), PluralRules::Keyword::Other);
}

}  // namespace intl
}  // namespace mozilla

Messung V0.5
C=85 H=90 G=87

¤ Dauer der Verarbeitung: 0.12 Sekunden  (vorverarbeitet)  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Software

     Produkte
     Quellcodebibliothek

Aktivitäten

     Artikel über Sicherheit
     Anleitung zur Aktivierung von SSL

Muße

     Gedichte
     Musik
     Bilder

Jenseits des Üblichen ....

Besucherstatistik

Besucherstatistik

Monitoring

Montastic status badge