mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-29 07:42:04 +00:00
Bug 380783 - nsStringAPI.h: no equivalent of IsVoid (tell if string is null), patch by Mook <mook.moz+mozbz@gmail.com>, r=bsmedberg/dbaron, sr=dbaron, a1.9=bz
This commit is contained in:
parent
9e292c5882
commit
3432251d59
@ -83,6 +83,8 @@ typedef PRUnichar* (* StringCloneDataFunc)(const nsAString&);
|
|||||||
typedef nsresult (* StringSetDataFunc)(nsAString&, const PRUnichar*, PRUint32);
|
typedef nsresult (* StringSetDataFunc)(nsAString&, const PRUnichar*, PRUint32);
|
||||||
typedef nsresult (* StringSetDataRangeFunc)(nsAString&, PRUint32, PRUint32, const PRUnichar*, PRUint32);
|
typedef nsresult (* StringSetDataRangeFunc)(nsAString&, PRUint32, PRUint32, const PRUnichar*, PRUint32);
|
||||||
typedef nsresult (* StringCopyFunc)(nsAString &, const nsAString &);
|
typedef nsresult (* StringCopyFunc)(nsAString &, const nsAString &);
|
||||||
|
typedef void (* StringSetIsVoidFunc)(nsAString &, const PRBool);
|
||||||
|
typedef PRBool (* StringGetIsVoidFunc)(const nsAString &);
|
||||||
|
|
||||||
typedef nsresult (* CStringContainerInitFunc)(nsCStringContainer&);
|
typedef nsresult (* CStringContainerInitFunc)(nsCStringContainer&);
|
||||||
typedef nsresult (* CStringContainerInit2Func)(nsCStringContainer&, const char *, PRUint32, PRUint32);
|
typedef nsresult (* CStringContainerInit2Func)(nsCStringContainer&, const char *, PRUint32, PRUint32);
|
||||||
@ -93,6 +95,8 @@ typedef char* (* CStringCloneDataFunc)(const nsACString&);
|
|||||||
typedef nsresult (* CStringSetDataFunc)(nsACString&, const char*, PRUint32);
|
typedef nsresult (* CStringSetDataFunc)(nsACString&, const char*, PRUint32);
|
||||||
typedef nsresult (* CStringSetDataRangeFunc)(nsACString&, PRUint32, PRUint32, const char*, PRUint32);
|
typedef nsresult (* CStringSetDataRangeFunc)(nsACString&, PRUint32, PRUint32, const char*, PRUint32);
|
||||||
typedef nsresult (* CStringCopyFunc)(nsACString &, const nsACString &);
|
typedef nsresult (* CStringCopyFunc)(nsACString &, const nsACString &);
|
||||||
|
typedef void (* CStringSetIsVoidFunc)(nsACString &, const PRBool);
|
||||||
|
typedef PRBool (* CStringGetIsVoidFunc)(const nsACString &);
|
||||||
|
|
||||||
typedef nsresult (* CStringToUTF16)(const nsACString &, nsCStringEncoding, nsAString &);
|
typedef nsresult (* CStringToUTF16)(const nsACString &, nsCStringEncoding, nsAString &);
|
||||||
typedef nsresult (* UTF16ToCString)(const nsAString &, nsCStringEncoding, nsACString &);
|
typedef nsresult (* UTF16ToCString)(const nsAString &, nsCStringEncoding, nsACString &);
|
||||||
@ -185,6 +189,10 @@ typedef struct XPCOMFunctions{
|
|||||||
InvokeByIndexFunc invokeByIndexFunc;
|
InvokeByIndexFunc invokeByIndexFunc;
|
||||||
CycleCollectorFunc cycleSuspectFunc;
|
CycleCollectorFunc cycleSuspectFunc;
|
||||||
CycleCollectorFunc cycleForgetFunc;
|
CycleCollectorFunc cycleForgetFunc;
|
||||||
|
StringSetIsVoidFunc stringSetIsVoid;
|
||||||
|
StringGetIsVoidFunc stringGetIsVoid;
|
||||||
|
CStringSetIsVoidFunc cstringSetIsVoid;
|
||||||
|
CStringGetIsVoidFunc cstringGetIsVoid;
|
||||||
|
|
||||||
} XPCOMFunctions;
|
} XPCOMFunctions;
|
||||||
|
|
||||||
|
@ -189,6 +189,18 @@ NS_StringCopy(nsAString &aDest, const nsAString &aSrc)
|
|||||||
return NS_OK; // XXX report errors
|
return NS_OK; // XXX report errors
|
||||||
}
|
}
|
||||||
|
|
||||||
|
XPCOM_API(void)
|
||||||
|
NS_StringSetIsVoid(nsAString &aStr, const PRBool aIsVoid)
|
||||||
|
{
|
||||||
|
aStr.SetIsVoid(aIsVoid);
|
||||||
|
}
|
||||||
|
|
||||||
|
XPCOM_API(PRBool)
|
||||||
|
NS_StringGetIsVoid(const nsAString &aStr)
|
||||||
|
{
|
||||||
|
return aStr.IsVoid();
|
||||||
|
}
|
||||||
|
|
||||||
/* ------------------------------------------------------------------------- */
|
/* ------------------------------------------------------------------------- */
|
||||||
|
|
||||||
XPCOM_API(nsresult)
|
XPCOM_API(nsresult)
|
||||||
@ -336,6 +348,18 @@ NS_CStringCopy(nsACString &aDest, const nsACString &aSrc)
|
|||||||
return NS_OK; // XXX report errors
|
return NS_OK; // XXX report errors
|
||||||
}
|
}
|
||||||
|
|
||||||
|
XPCOM_API(void)
|
||||||
|
NS_CStringSetIsVoid(nsACString &aStr, const PRBool aIsVoid)
|
||||||
|
{
|
||||||
|
aStr.SetIsVoid(aIsVoid);
|
||||||
|
}
|
||||||
|
|
||||||
|
XPCOM_API(PRBool)
|
||||||
|
NS_CStringGetIsVoid(const nsACString &aStr)
|
||||||
|
{
|
||||||
|
return aStr.IsVoid();
|
||||||
|
}
|
||||||
|
|
||||||
/* ------------------------------------------------------------------------- */
|
/* ------------------------------------------------------------------------- */
|
||||||
|
|
||||||
XPCOM_API(nsresult)
|
XPCOM_API(nsresult)
|
||||||
|
@ -112,6 +112,15 @@ public:
|
|||||||
return Length() == 0;
|
return Length() == 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
NS_HIDDEN_(void) SetIsVoid(PRBool val)
|
||||||
|
{
|
||||||
|
NS_StringSetIsVoid(*this, val);
|
||||||
|
}
|
||||||
|
NS_HIDDEN_(PRBool) IsVoid() const
|
||||||
|
{
|
||||||
|
return NS_StringGetIsVoid(*this);
|
||||||
|
}
|
||||||
|
|
||||||
NS_HIDDEN_(void) Assign(const self_type& aString)
|
NS_HIDDEN_(void) Assign(const self_type& aString)
|
||||||
{
|
{
|
||||||
NS_StringCopy(*this, aString);
|
NS_StringCopy(*this, aString);
|
||||||
@ -387,6 +396,15 @@ public:
|
|||||||
return Length() == 0;
|
return Length() == 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
NS_HIDDEN_(void) SetIsVoid(PRBool val)
|
||||||
|
{
|
||||||
|
NS_CStringSetIsVoid(*this, val);
|
||||||
|
}
|
||||||
|
NS_HIDDEN_(PRBool) IsVoid() const
|
||||||
|
{
|
||||||
|
return NS_CStringGetIsVoid(*this);
|
||||||
|
}
|
||||||
|
|
||||||
NS_HIDDEN_(void) Assign(const self_type& aString)
|
NS_HIDDEN_(void) Assign(const self_type& aString)
|
||||||
{
|
{
|
||||||
NS_CStringCopy(*this, aString);
|
NS_CStringCopy(*this, aString);
|
||||||
|
@ -305,6 +305,20 @@ NS_StringCopy(nsAString &aDest, const nsAString &aSrc)
|
|||||||
return xpcomFunctions.stringCopy(aDest, aSrc);
|
return xpcomFunctions.stringCopy(aDest, aSrc);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
XPCOM_API(void)
|
||||||
|
NS_StringSetIsVoid(nsAString &aStr, const PRBool aIsVoid)
|
||||||
|
{
|
||||||
|
if (xpcomFunctions.stringSetIsVoid)
|
||||||
|
xpcomFunctions.stringSetIsVoid(aStr, aIsVoid);
|
||||||
|
}
|
||||||
|
|
||||||
|
XPCOM_API(PRBool)
|
||||||
|
NS_StringGetIsVoid(const nsAString &aStr)
|
||||||
|
{
|
||||||
|
if (!xpcomFunctions.stringGetIsVoid)
|
||||||
|
return PR_FALSE;
|
||||||
|
return xpcomFunctions.stringGetIsVoid(aStr);
|
||||||
|
}
|
||||||
|
|
||||||
XPCOM_API(nsresult)
|
XPCOM_API(nsresult)
|
||||||
NS_CStringContainerInit(nsCStringContainer &aStr)
|
NS_CStringContainerInit(nsCStringContainer &aStr)
|
||||||
@ -385,6 +399,21 @@ NS_CStringCopy(nsACString &aDest, const nsACString &aSrc)
|
|||||||
return xpcomFunctions.cstringCopy(aDest, aSrc);
|
return xpcomFunctions.cstringCopy(aDest, aSrc);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
XPCOM_API(void)
|
||||||
|
NS_CStringSetIsVoid(nsACString &aStr, const PRBool aIsVoid)
|
||||||
|
{
|
||||||
|
if (xpcomFunctions.cstringSetIsVoid)
|
||||||
|
xpcomFunctions.cstringSetIsVoid(aStr, aIsVoid);
|
||||||
|
}
|
||||||
|
|
||||||
|
XPCOM_API(PRBool)
|
||||||
|
NS_CStringGetIsVoid(const nsACString &aStr)
|
||||||
|
{
|
||||||
|
if (!xpcomFunctions.cstringGetIsVoid)
|
||||||
|
return PR_FALSE;
|
||||||
|
return xpcomFunctions.cstringGetIsVoid(aStr);
|
||||||
|
}
|
||||||
|
|
||||||
XPCOM_API(nsresult)
|
XPCOM_API(nsresult)
|
||||||
NS_CStringToUTF16(const nsACString &aSrc, nsCStringEncoding aSrcEncoding, nsAString &aDest)
|
NS_CStringToUTF16(const nsACString &aSrc, nsCStringEncoding aSrcEncoding, nsAString &aDest)
|
||||||
{
|
{
|
||||||
|
@ -60,6 +60,8 @@
|
|||||||
# define NS_StringSetData NS_StringSetData_P
|
# define NS_StringSetData NS_StringSetData_P
|
||||||
# define NS_StringSetDataRange NS_StringSetDataRange_P
|
# define NS_StringSetDataRange NS_StringSetDataRange_P
|
||||||
# define NS_StringCopy NS_StringCopy_P
|
# define NS_StringCopy NS_StringCopy_P
|
||||||
|
# define NS_StringSetIsVoid NS_StringSetIsVoid_P
|
||||||
|
# define NS_StringGetIsVoid NS_StringGetIsVoid_P
|
||||||
# define NS_CStringContainerInit NS_CStringContainerInit_P
|
# define NS_CStringContainerInit NS_CStringContainerInit_P
|
||||||
# define NS_CStringContainerInit2 NS_CStringContainerInit2_P
|
# define NS_CStringContainerInit2 NS_CStringContainerInit2_P
|
||||||
# define NS_CStringContainerFinish NS_CStringContainerFinish_P
|
# define NS_CStringContainerFinish NS_CStringContainerFinish_P
|
||||||
@ -69,6 +71,8 @@
|
|||||||
# define NS_CStringSetData NS_CStringSetData_P
|
# define NS_CStringSetData NS_CStringSetData_P
|
||||||
# define NS_CStringSetDataRange NS_CStringSetDataRange_P
|
# define NS_CStringSetDataRange NS_CStringSetDataRange_P
|
||||||
# define NS_CStringCopy NS_CStringCopy_P
|
# define NS_CStringCopy NS_CStringCopy_P
|
||||||
|
# define NS_CStringSetIsVoid NS_CStringSetIsVoid_P
|
||||||
|
# define NS_CStringGetIsVoid NS_CStringGetIsVoid_P
|
||||||
# define NS_CStringToUTF16 NS_CStringToUTF16_P
|
# define NS_CStringToUTF16 NS_CStringToUTF16_P
|
||||||
# define NS_UTF16ToCString NS_UTF16ToCString_P
|
# define NS_UTF16ToCString NS_UTF16ToCString_P
|
||||||
#endif
|
#endif
|
||||||
@ -444,6 +448,24 @@ NS_StringCutData(nsAString &aStr, PRUint32 aCutOffset, PRUint32 aCutLength)
|
|||||||
return NS_StringSetDataRange(aStr, aCutOffset, aCutLength, nsnull, 0);
|
return NS_StringSetDataRange(aStr, aCutOffset, aCutLength, nsnull, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* NS_StringSetIsVoid
|
||||||
|
*
|
||||||
|
* This function marks a string as being a "void string". Any data in the
|
||||||
|
* string will be lost.
|
||||||
|
*/
|
||||||
|
XPCOM_API(void)
|
||||||
|
NS_StringSetIsVoid(nsAString& aStr, const PRBool aIsVoid);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* NS_StringGetIsVoid
|
||||||
|
*
|
||||||
|
* This function provides a way to test if a string is a "void string", as
|
||||||
|
* marked by NS_StringSetIsVoid.
|
||||||
|
*/
|
||||||
|
XPCOM_API(PRBool)
|
||||||
|
NS_StringGetIsVoid(const nsAString& aStr);
|
||||||
|
|
||||||
/* ------------------------------------------------------------------------- */
|
/* ------------------------------------------------------------------------- */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -749,6 +771,24 @@ NS_CStringCutData(nsACString &aStr, PRUint32 aCutOffset, PRUint32 aCutLength)
|
|||||||
return NS_CStringSetDataRange(aStr, aCutOffset, aCutLength, nsnull, 0);
|
return NS_CStringSetDataRange(aStr, aCutOffset, aCutLength, nsnull, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* NS_CStringSetIsVoid
|
||||||
|
*
|
||||||
|
* This function marks a string as being a "void string". Any data in the
|
||||||
|
* string will be lost.
|
||||||
|
*/
|
||||||
|
XPCOM_API(void)
|
||||||
|
NS_CStringSetIsVoid(nsACString& aStr, const PRBool aIsVoid);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* NS_CStringGetIsVoid
|
||||||
|
*
|
||||||
|
* This function provides a way to test if a string is a "void string", as
|
||||||
|
* marked by NS_CStringSetIsVoid.
|
||||||
|
*/
|
||||||
|
XPCOM_API(PRBool)
|
||||||
|
NS_CStringGetIsVoid(const nsACString& aStr);
|
||||||
|
|
||||||
/* ------------------------------------------------------------------------- */
|
/* ------------------------------------------------------------------------- */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -116,7 +116,11 @@ static const XPCOMFunctions kFrozenFunctions = {
|
|||||||
&NS_DestroyXPTCallStub_P,
|
&NS_DestroyXPTCallStub_P,
|
||||||
&NS_InvokeByIndex_P,
|
&NS_InvokeByIndex_P,
|
||||||
&NS_CycleCollectorSuspect_P,
|
&NS_CycleCollectorSuspect_P,
|
||||||
&NS_CycleCollectorForget_P
|
&NS_CycleCollectorForget_P,
|
||||||
|
&NS_StringSetIsVoid_P,
|
||||||
|
&NS_StringGetIsVoid_P,
|
||||||
|
&NS_CStringSetIsVoid_P,
|
||||||
|
&NS_CStringGetIsVoid_P
|
||||||
};
|
};
|
||||||
|
|
||||||
EXPORT_XPCOM_API(nsresult)
|
EXPORT_XPCOM_API(nsresult)
|
||||||
@ -427,6 +431,20 @@ NS_StringCopy(nsAString &aDest, const nsAString &aSrc)
|
|||||||
return NS_StringCopy_P(aDest, aSrc);
|
return NS_StringCopy_P(aDest, aSrc);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#undef NS_StringSetIsVoid
|
||||||
|
EXPORT_XPCOM_API(void)
|
||||||
|
NS_StringSetIsVoid(nsAString &aStr, const PRBool aIsVoid)
|
||||||
|
{
|
||||||
|
NS_StringSetIsVoid_P(aStr, aIsVoid);
|
||||||
|
}
|
||||||
|
|
||||||
|
#undef NS_StringGetIsVoid
|
||||||
|
EXPORT_XPCOM_API(PRBool)
|
||||||
|
NS_StringGetIsVoid(const nsAString &aStr)
|
||||||
|
{
|
||||||
|
return NS_StringGetIsVoid_P(aStr);
|
||||||
|
}
|
||||||
|
|
||||||
#undef NS_CStringContainerInit
|
#undef NS_CStringContainerInit
|
||||||
EXPORT_XPCOM_API(nsresult)
|
EXPORT_XPCOM_API(nsresult)
|
||||||
NS_CStringContainerInit(nsCStringContainer &aStr)
|
NS_CStringContainerInit(nsCStringContainer &aStr)
|
||||||
@ -494,6 +512,20 @@ NS_CStringCopy(nsACString &aDest, const nsACString &aSrc)
|
|||||||
return NS_CStringCopy_P(aDest, aSrc);
|
return NS_CStringCopy_P(aDest, aSrc);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#undef NS_CStringSetIsVoid
|
||||||
|
EXPORT_XPCOM_API(void)
|
||||||
|
NS_CStringSetIsVoid(nsACString &aStr, const PRBool aIsVoid)
|
||||||
|
{
|
||||||
|
NS_CStringSetIsVoid_P(aStr, aIsVoid);
|
||||||
|
}
|
||||||
|
|
||||||
|
#undef NS_CStringGetIsVoid
|
||||||
|
EXPORT_XPCOM_API(PRBool)
|
||||||
|
NS_CStringGetIsVoid(const nsACString &aStr)
|
||||||
|
{
|
||||||
|
return NS_CStringGetIsVoid_P(aStr);
|
||||||
|
}
|
||||||
|
|
||||||
#undef NS_CStringToUTF16
|
#undef NS_CStringToUTF16
|
||||||
EXPORT_XPCOM_API(nsresult)
|
EXPORT_XPCOM_API(nsresult)
|
||||||
NS_CStringToUTF16(const nsACString &aSrc, nsCStringEncoding aSrcEncoding, nsAString &aDest)
|
NS_CStringToUTF16(const nsACString &aSrc, nsCStringEncoding aSrcEncoding, nsAString &aDest)
|
||||||
|
@ -92,6 +92,12 @@ CPPSRCS += \
|
|||||||
$(NULL)
|
$(NULL)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifndef MOZILLA_INTERNAL_API
|
||||||
|
CPPSRCS += \
|
||||||
|
TestStringAPI.cpp \
|
||||||
|
$(NULL)
|
||||||
|
endif
|
||||||
|
|
||||||
#CPPSRCS += TimerTest.cpp
|
#CPPSRCS += TimerTest.cpp
|
||||||
|
|
||||||
SIMPLE_PROGRAMS = $(CPPSRCS:.cpp=$(BIN_SUFFIX))
|
SIMPLE_PROGRAMS = $(CPPSRCS:.cpp=$(BIN_SUFFIX))
|
||||||
|
134
xpcom/tests/TestStringAPI.cpp
Normal file
134
xpcom/tests/TestStringAPI.cpp
Normal file
@ -0,0 +1,134 @@
|
|||||||
|
/* ***** BEGIN LICENSE BLOCK *****
|
||||||
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||||
|
*
|
||||||
|
* The contents of this file are subject to the Mozilla Public License Version
|
||||||
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
||||||
|
* the License. You may obtain a copy of the License at
|
||||||
|
* http://www.mozilla.org/MPL/
|
||||||
|
*
|
||||||
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
||||||
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||||
|
* for the specific language governing rights and limitations under the
|
||||||
|
* License.
|
||||||
|
*
|
||||||
|
* The Original Code is XPCOM external strings test.
|
||||||
|
*
|
||||||
|
* The Initial Developer of the Original Code is
|
||||||
|
* Mook <mook.moz@gmail.com>.
|
||||||
|
* Portions created by the Initial Developer are Copyright (C) 2007
|
||||||
|
* the Initial Developer. All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Contributor(s):
|
||||||
|
*
|
||||||
|
* Alternatively, the contents of this file may be used under the terms of
|
||||||
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
||||||
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||||
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
||||||
|
* of those above. If you wish to allow use of your version of this file only
|
||||||
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
||||||
|
* use your version of this file under the terms of the MPL, indicate your
|
||||||
|
* decision by deleting the provisions above and replace them with the notice
|
||||||
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
||||||
|
* the provisions above, a recipient may use your version of this file under
|
||||||
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
||||||
|
*
|
||||||
|
* ***** END LICENSE BLOCK ***** */
|
||||||
|
|
||||||
|
#include <cstdio>
|
||||||
|
#include "nsStringAPI.h"
|
||||||
|
|
||||||
|
#define CHECK(x) \
|
||||||
|
_doCheck(x, #x, __LINE__)
|
||||||
|
|
||||||
|
int _doCheck(bool cond, const char* msg, int line) {
|
||||||
|
if (cond) return 0;
|
||||||
|
fprintf(stderr, "FAIL: line %d: %s\n", line, msg);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
int testEmpty() {
|
||||||
|
nsString s;
|
||||||
|
return CHECK(0 == s.Length()) +
|
||||||
|
CHECK(s.IsEmpty());
|
||||||
|
}
|
||||||
|
|
||||||
|
int testAccess() {
|
||||||
|
nsString s;
|
||||||
|
s.Assign(NS_LITERAL_STRING("hello"));
|
||||||
|
int res = CHECK(5 == s.Length()) +
|
||||||
|
CHECK(s.EqualsLiteral("hello"));
|
||||||
|
const PRUnichar *it, *end;
|
||||||
|
int len = s.BeginReading(&it, &end);
|
||||||
|
res += CHECK(5 == len);
|
||||||
|
res += CHECK(PRUnichar('h') == it[0]) +
|
||||||
|
CHECK(PRUnichar('e') == it[1]) +
|
||||||
|
CHECK(PRUnichar('l') == it[2]) +
|
||||||
|
CHECK(PRUnichar('l') == it[3]) +
|
||||||
|
CHECK(PRUnichar('o') == it[4]) +
|
||||||
|
CHECK(it + len == end);
|
||||||
|
res += CHECK(s[0] == s.First());
|
||||||
|
for (int i = 0; i < len; ++i) {
|
||||||
|
res += CHECK(s[i] == it[i]);
|
||||||
|
res += CHECK(s[i] == s.CharAt(i));
|
||||||
|
}
|
||||||
|
res += CHECK(it == s.BeginReading());
|
||||||
|
res += CHECK(end == s.EndReading());
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
|
||||||
|
int testWrite() {
|
||||||
|
nsString s(NS_LITERAL_STRING("xyzz"));
|
||||||
|
PRUnichar *begin, *end;
|
||||||
|
int res = CHECK(4 == s.Length());
|
||||||
|
PRUint32 len = s.BeginWriting(&begin, &end, 5);
|
||||||
|
res += CHECK(5 == s.Length()) +
|
||||||
|
CHECK(5 == len) +
|
||||||
|
CHECK(end == begin + 5) +
|
||||||
|
CHECK(begin == s.BeginWriting()) +
|
||||||
|
CHECK(end == s.EndWriting());
|
||||||
|
begin[4] = PRUnichar('y');
|
||||||
|
res += CHECK(s.Equals(NS_LITERAL_STRING("xyzzy")));
|
||||||
|
s.SetLength(4);
|
||||||
|
res += CHECK(4 == s.Length()) +
|
||||||
|
CHECK(s.Equals(NS_LITERAL_STRING("xyzz"))) +
|
||||||
|
CHECK(!s.Equals(NS_LITERAL_STRING("xyzzy"))) +
|
||||||
|
CHECK(!s.IsEmpty());
|
||||||
|
s.Truncate();
|
||||||
|
res += CHECK(0 == s.Length()) +
|
||||||
|
CHECK(s.IsEmpty());
|
||||||
|
const PRUnichar sample[] = { 's', 'a', 'm', 'p', 'l', 'e', '\0' };
|
||||||
|
s.Assign(sample);
|
||||||
|
res += CHECK(s.EqualsLiteral("sample"));
|
||||||
|
s.Assign(sample, 4);
|
||||||
|
res += CHECK(s.EqualsLiteral("samp"));
|
||||||
|
s.Assign(PRUnichar('q'));
|
||||||
|
res += CHECK(s.EqualsLiteral("q"));
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
|
||||||
|
int testVoid() {
|
||||||
|
nsString s;
|
||||||
|
int ret = CHECK(!s.IsVoid());
|
||||||
|
s.SetIsVoid(PR_FALSE);
|
||||||
|
ret += CHECK(!s.IsVoid());
|
||||||
|
s.SetIsVoid(PR_TRUE);
|
||||||
|
ret += CHECK(s.IsVoid());
|
||||||
|
s.SetIsVoid(PR_FALSE);
|
||||||
|
ret += CHECK(!s.IsVoid());
|
||||||
|
s.SetIsVoid(PR_TRUE);
|
||||||
|
s.AssignLiteral("hello");
|
||||||
|
ret += CHECK(!s.IsVoid());
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
int rv = 0;
|
||||||
|
rv += testEmpty();
|
||||||
|
rv += testAccess();
|
||||||
|
rv += testWrite();
|
||||||
|
rv += testVoid();
|
||||||
|
if (0 == rv) {
|
||||||
|
fprintf(stderr, "PASS: StringAPI tests\n");
|
||||||
|
}
|
||||||
|
return rv;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user