icu/icu4c/source/test/cintltst/cloctst.h
Fredrik Roubert 83726260ef ICU-23031 Reinstate special case for "-u-va-posix" lost by ICU-22520.
Inside of locimp_forLanguageTag() in _appendKeywords() in uloc_tag.cpp
there's a hardcoded special case for "-u-va-posix" which appends the
"_POSIX" variant but this was missed during the refactoring made for
ICU-22520 (there isn't any test case that covers this).

So the call to locimp_forLanguageTag() did more than previously
understood, but we still don't want to have to call that for every
language tag that has BCP-47 extensions just in order to get to this
special case. Instead, add a special case also to ulocimp_getSubtags().

For this to work nicely, the loop in _getVariant() that copies variants
needs to be refactored so that it easily can break when encountering the
start of any BCP-47 extension (which also has the welcome side-effect of
making it more efficient, being able to append an entire variant at once
to the output sink).

This was broken by commit 678d5c1273.
2025-02-13 08:50:17 +01:00

164 lines
4.3 KiB
C

// © 2016 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
/********************************************************************
* COPYRIGHT:
* Copyright (c) 1997-2014, International Business Machines Corporation and
* others. All Rights Reserved.
********************************************************************/
/********************************************************************************
*
* File CLOCTST.H
*
* Modification History:
* Name Description
* Madhu Katragadda Converted to C
*********************************************************************************
*/
#ifndef _CLOCTEST
#define _CLOCTEST
#include "cintltst.h"
/*C API TEST FOR LOCALE */
/**
* Test functions to set and get data fields
**/
static void TestBasicGetters(void);
static void TestPrefixes(void);
static void TestVariantLengthLimit(void);
/**
* Use Locale to access Resource file data and compare against expected values
**/
static void TestSimpleResourceInfo(void);
/**
* Use Locale to access Resource file display names and compare against expected values
**/
static void TestDisplayNames(void);
static void TestGetDisplayScriptPreFlighting21160(void);
/**
* Test getAvailableLocales
**/
static void TestGetAvailableLocales(void);
static void TestGetAvailableLocalesByType(void);
/**
* Test functions to set and access a custom data directory
**/
static void TestDataDirectory(void);
/**
* Test functions to test get ISO countries and Languages
**/
static void TestISOFunctions(void);
/**
* Test functions to test get ISO3 countries and Languages Fallback
**/
static void TestISO3Fallback(void);
/**
* Test functions to test get ISO3 countries and Languages for Uninstalled locales
**/
static void TestUninstalledISO3Names(void);
static void TestObsoleteNames(void);
/**
* Test functions uloc_getDisplaynames()
**/
static void TestSimpleDisplayNames(void);
/**
* Test functions uloc_getDisplaynames()
**/
static void TestVariantParsing(void);
/* Test getting keyword enumeratin */
static void TestKeywordVariants(void);
static void TestKeywordSet(void);
static void TestKeywordSetError(void);
/* Test getting keyword values */
static void TestKeywordVariantParsing(void);
/* Test warning for no data in getDisplay* */
static void TestDisplayNameWarning(void);
/* Test uloc_getLocaleForLCID */
static void TestGetLocaleForLCID(void);
/**
* routine to perform subtests, used by TestDisplayNames
*/
static void doTestDisplayNames(const char* inLocale, int32_t compareIndex);
static void TestCanonicalization(void);
static void TestCanonicalizationBuffer(void);
static void TestCanonicalization21749StackUseAfterScope(void);
static void TestDisplayKeywords(void);
static void TestDisplayKeywordValues(void);
static void TestGetBaseName(void);
static void TestTrailingNull(void);
static void TestGetLocale(void);
/**
* additional initialization for datatables storing expected values
*/
static void setUpDataTable(void);
static void cleanUpDataTable(void);
/*static void displayDataTable(void);*/
static void TestAcceptLanguage(void);
/**
* test locale aliases
*/
static void TestCalendar(void);
static void TestDateFormat(void);
static void TestCollation(void);
static void TestULocale(void);
static void TestUResourceBundle(void);
static void TestDisplayName(void);
static void TestAcceptLanguage(void);
static void TestOrientation(void);
static void TestLikelySubtags(void);
/**
* test terminate correctly.
*/
static void Test21157CorrectTerminating(void);
/**
* language tag
*/
static void TestForLanguageTag(void);
static void TestToLanguageTag(void);
static void TestBug20132(void);
static void TestLangAndRegionCanonicalize(void);
static void TestToUnicodeLocaleKey(void);
static void TestToLegacyKey(void);
static void TestToUnicodeLocaleType(void);
static void TestToLegacyType(void);
static void TestBug20149(void);
static void TestCDefaultLocale(void);
static void TestBug21449InfiniteLoop(void);
static void TestBug23031VaPosix(void);
static void TestBug23031VaPosixManyExtensions(void);
static void TestBug23031VaPosixManyVariants(void);
/**
* U_USING_DEFAULT_WARNING
*/
static void TestUsingDefaultWarning(void);
/**
* locale data
*/
static void TestEnglishExemplarCharacters(void);
#endif