/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* 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/intl/Localization.h" using namespace mozilla; using namespace mozilla::dom; using namespace mozilla::intl; TEST(Intl_Localization, FormatValueSyncMissing) { nsTArray resIds = { "toolkit/global/handlerDialog.ftl"_ns, }; RefPtr l10n = Localization::Create(resIds, true); auto l10nId = "non-existing-l10n-id"_ns; IgnoredErrorResult rv; nsAutoCString result; l10n->FormatValueSync(l10nId, {}, result, rv); ASSERT_FALSE(rv.Failed()); ASSERT_TRUE(result.IsEmpty()); } TEST(Intl_Localization, FormatValueSync) { nsTArray resIds = { "toolkit/global/handlerDialog.ftl"_ns, }; RefPtr l10n = Localization::Create(resIds, true); auto l10nId = "permission-dialog-unset-description"_ns; IgnoredErrorResult rv; nsAutoCString result; l10n->FormatValueSync(l10nId, {}, result, rv); ASSERT_FALSE(rv.Failed()); ASSERT_FALSE(result.IsEmpty()); } TEST(Intl_Localization, FormatValueSyncWithArgs) { nsTArray resIds = { "toolkit/global/handlerDialog.ftl"_ns, }; RefPtr l10n = Localization::Create(resIds, true); auto l10nId = "permission-dialog-description"_ns; auto l10nArgs = dom::Optional(); l10nArgs.Construct(); auto dirArg = l10nArgs.Value().Entries().AppendElement(); dirArg->mKey = "scheme"_ns; dirArg->mValue.SetValue().SetAsUTF8String().Assign("Foo"_ns); IgnoredErrorResult rv; nsAutoCString result; l10n->FormatValueSync(l10nId, l10nArgs, result, rv); ASSERT_FALSE(rv.Failed()); ASSERT_TRUE(result.Find("Foo"_ns) > -1); } TEST(Intl_Localization, FormatMessagesSync) { nsTArray resIds = { "toolkit/global/handlerDialog.ftl"_ns, }; RefPtr l10n = Localization::Create(resIds, true); dom::Sequence l10nIds; auto* l10nId = l10nIds.AppendElement(fallible); ASSERT_TRUE(l10nId); l10nId->SetAsUTF8String().Assign("permission-dialog-unset-description"_ns); IgnoredErrorResult rv; nsTArray> result; l10n->FormatMessagesSync(l10nIds, result, rv); ASSERT_FALSE(rv.Failed()); ASSERT_FALSE(result.IsEmpty()); } TEST(Intl_Localization, FormatMessagesSyncWithArgs) { nsTArray resIds = { "toolkit/global/handlerDialog.ftl"_ns, }; RefPtr l10n = Localization::Create(resIds, true); dom::Sequence l10nIds; L10nIdArgs& key0 = l10nIds.AppendElement(fallible)->SetAsL10nIdArgs(); key0.mId.Assign("permission-dialog-description"_ns); auto arg = key0.mArgs.SetValue().Entries().AppendElement(); arg->mKey = "scheme"_ns; arg->mValue.SetValue().SetAsUTF8String().Assign("Foo"_ns); L10nIdArgs& key1 = l10nIds.AppendElement(fallible)->SetAsL10nIdArgs(); key1.mId.Assign("chooser-window"_ns); IgnoredErrorResult rv; nsTArray> result; l10n->FormatMessagesSync(l10nIds, result, rv); ASSERT_FALSE(rv.Failed()); ASSERT_TRUE(result.Length() == 2); ASSERT_TRUE(result.ElementAt(0).Value().mValue.Find("Foo"_ns) > -1); auto fmtAttr = result.ElementAt(1).Value().mAttributes.Value(); ASSERT_TRUE(fmtAttr.Length() == 2); ASSERT_FALSE(fmtAttr.ElementAt(0).mName.IsEmpty()); ASSERT_FALSE(fmtAttr.ElementAt(0).mValue.IsEmpty()); }