gecko-dev/intl/locale/tests/gtest/TestCollation.cpp

52 строки
1.8 KiB
C++

/* -*- 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/Services.h"
#include "nsCollationCID.h"
#include "nsComponentManagerUtils.h"
#include "nsCOMPtr.h"
#include "nsICollation.h"
#include "nsString.h"
TEST(Collation, AllocateRowSortKey) {
nsCOMPtr<nsICollationFactory> colFactory =
do_CreateInstance(NS_COLLATIONFACTORY_CONTRACTID);
ASSERT_TRUE(colFactory);
// Don't throw error even if locale name is invalid
nsCOMPtr<nsICollation> collator;
nsresult rv =
colFactory->CreateCollationForLocale(NS_LITERAL_CSTRING("$languageName"),
getter_AddRefs(collator));
ASSERT_TRUE(NS_SUCCEEDED(rv));
uint8_t* sortKey1 = nullptr;
uint32_t sortKeyLen1 = 0;
// Don't throw error even if locale name is invalid
rv = collator->AllocateRawSortKey(nsICollation::kCollationStrengthDefault,
NS_LITERAL_STRING("ABC"),
&sortKey1, &sortKeyLen1);
ASSERT_TRUE(NS_SUCCEEDED(rv));
uint8_t* sortKey2 = nullptr;
uint32_t sortKeyLen2 = 0;
// Don't throw error even if locale name is invalid
rv = collator->AllocateRawSortKey(nsICollation::kCollationStrengthDefault,
NS_LITERAL_STRING("DEF"),
&sortKey2, &sortKeyLen2);
ASSERT_TRUE(NS_SUCCEEDED(rv));
int32_t result;
rv = collator->CompareRawSortKey(sortKey1, sortKeyLen1,
sortKey2, sortKeyLen2, &result);
ASSERT_TRUE(NS_SUCCEEDED(rv));
ASSERT_TRUE(result < 0);
free(sortKey1);
free(sortKey2);
}