2005-11-23 19:44:16 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim:set ts=2 sw=2 sts=2 et cindent: */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* 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/. */
|
2005-11-23 19:44:16 +00:00
|
|
|
|
2013-12-09 02:52:54 +00:00
|
|
|
#include "mozilla/ArrayUtils.h"
|
2011-10-11 05:50:08 +00:00
|
|
|
|
2005-11-23 19:44:16 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "nsTArray.h"
|
|
|
|
#include "nsAutoPtr.h"
|
2011-09-22 15:22:20 +00:00
|
|
|
#include "nsStringAPI.h"
|
2005-11-23 19:44:16 +00:00
|
|
|
#include "nsDirectoryServiceDefs.h"
|
|
|
|
#include "nsDirectoryServiceUtils.h"
|
|
|
|
#include "nsComponentManagerUtils.h"
|
|
|
|
#include "nsXPCOM.h"
|
2012-06-06 02:08:30 +00:00
|
|
|
#include "nsIFile.h"
|
2005-11-23 19:44:16 +00:00
|
|
|
|
2011-10-11 05:50:08 +00:00
|
|
|
using namespace mozilla;
|
|
|
|
|
2008-08-18 16:45:38 +00:00
|
|
|
namespace TestTArray {
|
|
|
|
|
2005-11-23 19:44:16 +00:00
|
|
|
// Define this so we can use test_basic_array in test_comptr_array
|
|
|
|
template <class T>
|
|
|
|
inline bool operator<(const nsCOMPtr<T>& lhs, const nsCOMPtr<T>& rhs) {
|
|
|
|
return lhs.get() < rhs.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
//----
|
|
|
|
|
|
|
|
template <class ElementType>
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool test_basic_array(ElementType *data,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t dataLen,
|
2005-11-23 19:44:16 +00:00
|
|
|
const ElementType& extra) {
|
|
|
|
nsTArray<ElementType> ary;
|
|
|
|
ary.AppendElements(data, dataLen);
|
2006-10-17 21:40:07 +00:00
|
|
|
if (ary.Length() != dataLen) {
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2006-10-17 21:40:07 +00:00
|
|
|
}
|
2010-05-22 19:35:41 +00:00
|
|
|
if (!(ary == ary)) {
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2010-05-22 19:35:41 +00:00
|
|
|
}
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t i;
|
2005-11-23 19:44:16 +00:00
|
|
|
for (i = 0; i < ary.Length(); ++i) {
|
|
|
|
if (ary[i] != data[i])
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2005-11-23 19:44:16 +00:00
|
|
|
}
|
2006-10-17 21:40:07 +00:00
|
|
|
for (i = 0; i < ary.Length(); ++i) {
|
|
|
|
if (ary.SafeElementAt(i, extra) != data[i])
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2006-10-17 21:40:07 +00:00
|
|
|
}
|
|
|
|
if (ary.SafeElementAt(ary.Length(), extra) != extra ||
|
|
|
|
ary.SafeElementAt(ary.Length() * 10, extra) != extra)
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2005-11-23 19:44:16 +00:00
|
|
|
// ensure sort results in ascending order
|
|
|
|
ary.Sort();
|
2013-02-13 15:11:53 +00:00
|
|
|
uint32_t j = 0, k = ary.IndexOfFirstElementGt(extra);
|
|
|
|
if (k != 0 && ary[k-1] == extra)
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2010-02-20 15:26:12 +00:00
|
|
|
for (i = 0; i < ary.Length(); ++i) {
|
2013-02-13 15:11:53 +00:00
|
|
|
k = ary.IndexOfFirstElementGt(ary[i]);
|
|
|
|
if (k == 0 || ary[k-1] != ary[i])
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2010-02-20 15:26:12 +00:00
|
|
|
if (k < j)
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2010-02-20 15:26:12 +00:00
|
|
|
j = k;
|
|
|
|
}
|
2008-02-21 09:43:15 +00:00
|
|
|
for (i = ary.Length(); --i; ) {
|
|
|
|
if (ary[i] < ary[i - 1])
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2008-02-21 09:43:15 +00:00
|
|
|
if (ary[i] == ary[i - 1])
|
|
|
|
ary.RemoveElementAt(i);
|
2005-11-23 19:44:16 +00:00
|
|
|
}
|
2010-05-22 19:35:41 +00:00
|
|
|
if (!(ary == ary)) {
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2010-05-22 19:35:41 +00:00
|
|
|
}
|
2008-02-21 09:43:15 +00:00
|
|
|
for (i = 0; i < ary.Length(); ++i) {
|
|
|
|
if (ary.BinaryIndexOf(ary[i]) != i)
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2008-02-21 09:43:15 +00:00
|
|
|
}
|
2010-04-02 16:34:31 +00:00
|
|
|
if (ary.BinaryIndexOf(extra) != ary.NoIndex)
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t oldLen = ary.Length();
|
2005-11-23 19:44:16 +00:00
|
|
|
ary.RemoveElement(data[dataLen / 2]);
|
|
|
|
if (ary.Length() != (oldLen - 1))
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2010-05-22 19:35:41 +00:00
|
|
|
if (!(ary == ary))
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2005-11-23 19:44:16 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t index = ary.Length() / 2;
|
2005-11-23 19:44:16 +00:00
|
|
|
if (!ary.InsertElementAt(index, extra))
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2010-05-22 19:35:41 +00:00
|
|
|
if (!(ary == ary))
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2005-11-23 19:44:16 +00:00
|
|
|
if (ary[index] != extra)
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2012-09-28 06:57:33 +00:00
|
|
|
if (ary.IndexOf(extra) == UINT32_MAX)
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2012-09-28 06:57:33 +00:00
|
|
|
if (ary.LastIndexOf(extra) == UINT32_MAX)
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2005-11-23 19:44:16 +00:00
|
|
|
// ensure proper searching
|
|
|
|
if (ary.IndexOf(extra) > ary.LastIndexOf(extra))
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2005-11-23 19:44:16 +00:00
|
|
|
if (ary.IndexOf(extra, index) != ary.LastIndexOf(extra, index))
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2005-11-23 19:44:16 +00:00
|
|
|
|
|
|
|
nsTArray<ElementType> copy(ary);
|
2010-05-22 19:35:41 +00:00
|
|
|
if (!(ary == copy))
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2005-11-23 19:44:16 +00:00
|
|
|
for (i = 0; i < copy.Length(); ++i) {
|
|
|
|
if (ary[i] != copy[i])
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2005-11-23 19:44:16 +00:00
|
|
|
}
|
|
|
|
if (!ary.AppendElements(copy))
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t cap = ary.Capacity();
|
2005-11-23 19:44:16 +00:00
|
|
|
ary.RemoveElementsAt(copy.Length(), copy.Length());
|
|
|
|
ary.Compact();
|
|
|
|
if (ary.Capacity() == cap)
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2005-11-23 19:44:16 +00:00
|
|
|
|
2012-10-04 22:23:41 +00:00
|
|
|
ary.Clear();
|
|
|
|
if (ary.IndexOf(extra) != UINT32_MAX)
|
|
|
|
return false;
|
|
|
|
if (ary.LastIndexOf(extra) != UINT32_MAX)
|
|
|
|
return false;
|
|
|
|
|
2005-11-23 19:44:16 +00:00
|
|
|
ary.Clear();
|
2012-07-30 14:20:58 +00:00
|
|
|
if (!ary.IsEmpty() || ary.Elements() == nullptr)
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2010-05-22 19:35:41 +00:00
|
|
|
if (!(ary == nsTArray<ElementType>()))
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2010-05-22 19:35:41 +00:00
|
|
|
if (ary == copy)
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2006-10-17 21:40:07 +00:00
|
|
|
if (ary.SafeElementAt(0, extra) != extra ||
|
|
|
|
ary.SafeElementAt(10, extra) != extra)
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2005-11-23 19:44:16 +00:00
|
|
|
|
|
|
|
ary = copy;
|
2010-05-22 19:35:41 +00:00
|
|
|
if (!(ary == copy))
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2005-11-23 19:44:16 +00:00
|
|
|
for (i = 0; i < copy.Length(); ++i) {
|
|
|
|
if (ary[i] != copy[i])
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2005-11-23 19:44:16 +00:00
|
|
|
}
|
|
|
|
|
2006-02-08 01:23:26 +00:00
|
|
|
if (!ary.InsertElementsAt(0, copy))
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2010-05-22 19:35:41 +00:00
|
|
|
if (ary == copy)
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2006-02-08 01:23:26 +00:00
|
|
|
ary.RemoveElementsAt(0, copy.Length());
|
|
|
|
for (i = 0; i < copy.Length(); ++i) {
|
|
|
|
if (ary[i] != copy[i])
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2006-02-08 01:23:26 +00:00
|
|
|
}
|
|
|
|
|
2005-11-28 20:27:42 +00:00
|
|
|
// These shouldn't crash!
|
|
|
|
nsTArray<ElementType> empty;
|
2007-07-08 07:08:04 +00:00
|
|
|
ary.AppendElements(reinterpret_cast<ElementType *>(0), 0);
|
2005-11-28 20:27:42 +00:00
|
|
|
ary.AppendElements(empty);
|
|
|
|
|
2006-01-30 17:16:50 +00:00
|
|
|
// See bug 324981
|
|
|
|
ary.RemoveElement(extra);
|
|
|
|
ary.RemoveElement(extra);
|
|
|
|
|
2011-10-17 14:59:28 +00:00
|
|
|
return true;
|
2005-11-23 19:44:16 +00:00
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool test_int_array() {
|
2005-11-23 19:44:16 +00:00
|
|
|
int data[] = {4,6,8,2,4,1,5,7,3};
|
2011-10-11 05:50:08 +00:00
|
|
|
return test_basic_array(data, ArrayLength(data), int(14));
|
2005-11-23 19:44:16 +00:00
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool test_int64_array() {
|
2012-08-22 15:56:38 +00:00
|
|
|
int64_t data[] = {4,6,8,2,4,1,5,7,3};
|
|
|
|
return test_basic_array(data, ArrayLength(data), int64_t(14));
|
2005-11-23 19:44:16 +00:00
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool test_char_array() {
|
2005-11-23 19:44:16 +00:00
|
|
|
char data[] = {4,6,8,2,4,1,5,7,3};
|
2011-10-11 05:50:08 +00:00
|
|
|
return test_basic_array(data, ArrayLength(data), char(14));
|
2005-11-23 19:44:16 +00:00
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool test_uint32_array() {
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t data[] = {4,6,8,2,4,1,5,7,3};
|
|
|
|
return test_basic_array(data, ArrayLength(data), uint32_t(14));
|
2005-11-23 19:44:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//----
|
|
|
|
|
|
|
|
class Object {
|
|
|
|
public:
|
|
|
|
Object() : mNum(0) {
|
|
|
|
}
|
2012-08-22 15:56:38 +00:00
|
|
|
Object(const char *str, uint32_t num) : mStr(str), mNum(num) {
|
2005-11-23 19:44:16 +00:00
|
|
|
}
|
|
|
|
Object(const Object& other) : mStr(other.mStr), mNum(other.mNum) {
|
|
|
|
}
|
|
|
|
~Object() {}
|
|
|
|
|
|
|
|
Object& operator=(const Object& other) {
|
|
|
|
mStr = other.mStr;
|
|
|
|
mNum = other.mNum;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool operator==(const Object& other) const {
|
2005-11-23 19:44:16 +00:00
|
|
|
return mStr == other.mStr && mNum == other.mNum;
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool operator<(const Object& other) const {
|
2005-11-23 19:44:16 +00:00
|
|
|
// sort based on mStr only
|
2011-09-22 15:22:20 +00:00
|
|
|
return mStr.Compare(other.mStr) < 0;
|
2005-11-23 19:44:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const char *Str() const { return mStr.get(); }
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t Num() const { return mNum; }
|
2005-11-23 19:44:16 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
nsCString mStr;
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t mNum;
|
2005-11-23 19:44:16 +00:00
|
|
|
};
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool test_object_array() {
|
2005-11-23 19:44:16 +00:00
|
|
|
nsTArray<Object> objArray;
|
|
|
|
const char kdata[] = "hello world";
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t i;
|
2011-10-11 05:50:08 +00:00
|
|
|
for (i = 0; i < ArrayLength(kdata); ++i) {
|
2005-11-23 19:44:16 +00:00
|
|
|
char x[] = {kdata[i],'\0'};
|
|
|
|
if (!objArray.AppendElement(Object(x, i)))
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2005-11-23 19:44:16 +00:00
|
|
|
}
|
2011-10-11 05:50:08 +00:00
|
|
|
for (i = 0; i < ArrayLength(kdata); ++i) {
|
2005-11-23 19:44:16 +00:00
|
|
|
if (objArray[i].Str()[0] != kdata[i])
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2005-11-23 19:44:16 +00:00
|
|
|
if (objArray[i].Num() != i)
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2005-11-23 19:44:16 +00:00
|
|
|
}
|
|
|
|
objArray.Sort();
|
|
|
|
const char ksorted[] = "\0 dehllloorw";
|
2011-10-11 05:50:08 +00:00
|
|
|
for (i = 0; i < ArrayLength(kdata)-1; ++i) {
|
2005-11-23 19:44:16 +00:00
|
|
|
if (objArray[i].Str()[0] != ksorted[i])
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2005-11-23 19:44:16 +00:00
|
|
|
}
|
2011-10-17 14:59:28 +00:00
|
|
|
return true;
|
2005-11-23 19:44:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// nsTArray<nsAutoPtr<T>> is not supported
|
|
|
|
#if 0
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool test_autoptr_array() {
|
2005-11-23 19:44:16 +00:00
|
|
|
nsTArray< nsAutoPtr<Object> > objArray;
|
|
|
|
const char kdata[] = "hello world";
|
2012-08-22 15:56:38 +00:00
|
|
|
for (uint32_t i = 0; i < ArrayLength(kdata); ++i) {
|
2005-11-23 19:44:16 +00:00
|
|
|
char x[] = {kdata[i],'\0'};
|
|
|
|
nsAutoPtr<Object> obj(new Object(x,i));
|
|
|
|
if (!objArray.AppendElement(obj)) // XXX does not call copy-constructor for nsAutoPtr!!!
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2012-07-30 14:20:58 +00:00
|
|
|
if (obj.get() == nullptr)
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2005-11-23 19:44:16 +00:00
|
|
|
obj.forget(); // the array now owns the reference
|
|
|
|
}
|
2012-08-22 15:56:38 +00:00
|
|
|
for (uint32_t i = 0; i < ArrayLength(kdata); ++i) {
|
2005-11-23 19:44:16 +00:00
|
|
|
if (objArray[i]->Str()[0] != kdata[i])
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2005-11-23 19:44:16 +00:00
|
|
|
if (objArray[i]->Num() != i)
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2005-11-23 19:44:16 +00:00
|
|
|
}
|
2011-10-17 14:59:28 +00:00
|
|
|
return true;
|
2005-11-23 19:44:16 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
//----
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool test_string_array() {
|
2005-11-23 19:44:16 +00:00
|
|
|
nsTArray<nsCString> strArray;
|
|
|
|
const char kdata[] = "hello world";
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t i;
|
2011-10-11 05:50:08 +00:00
|
|
|
for (i = 0; i < ArrayLength(kdata); ++i) {
|
2011-09-22 15:22:20 +00:00
|
|
|
nsCString str;
|
|
|
|
str.Assign(kdata[i]);
|
|
|
|
if (!strArray.AppendElement(str))
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2005-11-23 19:44:16 +00:00
|
|
|
}
|
2011-10-11 05:50:08 +00:00
|
|
|
for (i = 0; i < ArrayLength(kdata); ++i) {
|
2005-11-23 19:44:16 +00:00
|
|
|
if (strArray[i].CharAt(0) != kdata[i])
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2005-11-23 19:44:16 +00:00
|
|
|
}
|
2005-12-12 21:28:29 +00:00
|
|
|
|
2006-02-08 01:23:26 +00:00
|
|
|
const char kextra[] = "foo bar";
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t oldLen = strArray.Length();
|
2006-02-08 01:23:26 +00:00
|
|
|
if (!strArray.AppendElement(kextra))
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2006-02-08 01:23:26 +00:00
|
|
|
strArray.RemoveElement(kextra);
|
|
|
|
if (oldLen != strArray.Length())
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2006-02-08 01:23:26 +00:00
|
|
|
|
2005-12-12 21:28:29 +00:00
|
|
|
if (strArray.IndexOf("e") != 1)
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2005-12-12 21:28:29 +00:00
|
|
|
|
2005-11-23 19:44:16 +00:00
|
|
|
strArray.Sort();
|
|
|
|
const char ksorted[] = "\0 dehllloorw";
|
2011-10-11 05:50:08 +00:00
|
|
|
for (i = ArrayLength(kdata); i--; ) {
|
2005-11-23 19:44:16 +00:00
|
|
|
if (strArray[i].CharAt(0) != ksorted[i])
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2008-02-21 09:43:15 +00:00
|
|
|
if (i > 0 && strArray[i] == strArray[i - 1])
|
|
|
|
strArray.RemoveElementAt(i);
|
|
|
|
}
|
|
|
|
for (i = 0; i < strArray.Length(); ++i) {
|
|
|
|
if (strArray.BinaryIndexOf(strArray[i]) != i)
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2005-11-23 19:44:16 +00:00
|
|
|
}
|
2010-04-02 16:34:31 +00:00
|
|
|
if (strArray.BinaryIndexOf(EmptyCString()) != strArray.NoIndex)
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2005-11-23 19:44:16 +00:00
|
|
|
|
2014-01-30 18:26:54 +00:00
|
|
|
nsCString rawArray[MOZ_ARRAY_LENGTH(kdata) - 1];
|
2011-10-11 05:50:08 +00:00
|
|
|
for (i = 0; i < ArrayLength(rawArray); ++i)
|
2005-11-23 19:44:16 +00:00
|
|
|
rawArray[i].Assign(kdata + i); // substrings of kdata
|
2011-10-11 05:50:08 +00:00
|
|
|
return test_basic_array(rawArray, ArrayLength(rawArray),
|
2005-11-23 19:44:16 +00:00
|
|
|
nsCString("foopy"));
|
|
|
|
}
|
|
|
|
|
|
|
|
//----
|
|
|
|
|
2005-12-12 21:28:29 +00:00
|
|
|
typedef nsCOMPtr<nsIFile> FilePointer;
|
|
|
|
|
|
|
|
class nsFileNameComparator {
|
|
|
|
public:
|
2011-09-29 06:19:26 +00:00
|
|
|
bool Equals(const FilePointer &a, const char *b) const {
|
2012-09-02 02:35:17 +00:00
|
|
|
nsAutoCString name;
|
2005-12-12 21:28:29 +00:00
|
|
|
a->GetNativeLeafName(name);
|
|
|
|
return name.Equals(b);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool test_comptr_array() {
|
2005-11-23 19:44:16 +00:00
|
|
|
FilePointer tmpDir;
|
|
|
|
NS_GetSpecialDirectory(NS_OS_TEMP_DIR, getter_AddRefs(tmpDir));
|
|
|
|
if (!tmpDir)
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2005-11-23 19:44:16 +00:00
|
|
|
const char *kNames[] = {
|
|
|
|
"foo.txt", "bar.html", "baz.gif"
|
|
|
|
};
|
|
|
|
nsTArray<FilePointer> fileArray;
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t i;
|
2011-10-11 05:50:08 +00:00
|
|
|
for (i = 0; i < ArrayLength(kNames); ++i) {
|
2005-11-23 19:44:16 +00:00
|
|
|
FilePointer f;
|
|
|
|
tmpDir->Clone(getter_AddRefs(f));
|
|
|
|
if (!f)
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2005-11-23 19:44:16 +00:00
|
|
|
if (NS_FAILED(f->AppendNative(nsDependentCString(kNames[i]))))
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2005-11-23 19:44:16 +00:00
|
|
|
fileArray.AppendElement(f);
|
|
|
|
}
|
2005-12-12 21:28:29 +00:00
|
|
|
|
2005-12-13 18:27:04 +00:00
|
|
|
if (fileArray.IndexOf(kNames[1], 0, nsFileNameComparator()) != 1)
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2005-12-12 21:28:29 +00:00
|
|
|
|
2005-11-23 19:44:16 +00:00
|
|
|
// It's unclear what 'operator<' means for nsCOMPtr, but whatever...
|
|
|
|
return test_basic_array(fileArray.Elements(), fileArray.Length(),
|
|
|
|
tmpDir);
|
|
|
|
}
|
|
|
|
|
|
|
|
//----
|
|
|
|
|
2005-12-12 21:28:29 +00:00
|
|
|
class RefcountedObject {
|
|
|
|
public:
|
|
|
|
RefcountedObject() : rc(0) {}
|
|
|
|
void AddRef() {
|
|
|
|
++rc;
|
|
|
|
}
|
|
|
|
void Release() {
|
|
|
|
if (--rc == 0)
|
|
|
|
delete this;
|
|
|
|
}
|
2006-02-04 01:21:54 +00:00
|
|
|
~RefcountedObject() {}
|
2006-02-08 01:23:26 +00:00
|
|
|
private:
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t rc;
|
2005-12-12 21:28:29 +00:00
|
|
|
};
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool test_refptr_array() {
|
|
|
|
bool rv = true;
|
2005-12-12 21:28:29 +00:00
|
|
|
|
|
|
|
nsTArray< nsRefPtr<RefcountedObject> > objArray;
|
|
|
|
|
|
|
|
RefcountedObject *a = new RefcountedObject(); a->AddRef();
|
|
|
|
RefcountedObject *b = new RefcountedObject(); b->AddRef();
|
|
|
|
RefcountedObject *c = new RefcountedObject(); c->AddRef();
|
|
|
|
|
|
|
|
objArray.AppendElement(a);
|
|
|
|
objArray.AppendElement(b);
|
|
|
|
objArray.AppendElement(c);
|
|
|
|
|
|
|
|
if (objArray.IndexOf(b) != 1)
|
2011-10-17 14:59:28 +00:00
|
|
|
rv = false;
|
2005-12-12 21:28:29 +00:00
|
|
|
|
|
|
|
a->Release();
|
|
|
|
b->Release();
|
|
|
|
c->Release();
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
//----
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool test_ptrarray() {
|
2012-08-22 15:56:38 +00:00
|
|
|
nsTArray<uint32_t*> ary;
|
2012-07-30 14:20:58 +00:00
|
|
|
if (ary.SafeElementAt(0) != nullptr)
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2012-07-30 14:20:58 +00:00
|
|
|
if (ary.SafeElementAt(1000) != nullptr)
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t a = 10;
|
2006-10-17 21:40:07 +00:00
|
|
|
ary.AppendElement(&a);
|
|
|
|
if (*ary[0] != a)
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2006-10-17 21:40:07 +00:00
|
|
|
if (*ary.SafeElementAt(0) != a)
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2006-10-17 21:40:07 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
nsTArray<const uint32_t*> cary;
|
2012-07-30 14:20:58 +00:00
|
|
|
if (cary.SafeElementAt(0) != nullptr)
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2012-07-30 14:20:58 +00:00
|
|
|
if (cary.SafeElementAt(1000) != nullptr)
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2012-08-22 15:56:38 +00:00
|
|
|
const uint32_t b = 14;
|
2006-10-17 21:40:07 +00:00
|
|
|
cary.AppendElement(&a);
|
|
|
|
cary.AppendElement(&b);
|
|
|
|
if (*cary[0] != a || *cary[1] != b)
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2006-10-17 21:40:07 +00:00
|
|
|
if (*cary.SafeElementAt(0) != a || *cary.SafeElementAt(1) != b)
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2006-10-17 21:40:07 +00:00
|
|
|
|
2011-10-17 14:59:28 +00:00
|
|
|
return true;
|
2006-10-17 21:40:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//----
|
|
|
|
|
2010-05-13 12:19:50 +00:00
|
|
|
// This test relies too heavily on the existence of DebugGetHeader to be
|
2006-11-03 00:52:40 +00:00
|
|
|
// useful in non-debug builds.
|
|
|
|
#ifdef DEBUG
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool test_autoarray() {
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t data[] = {4,6,8,2,4,1,5,7,3};
|
2014-01-30 18:26:54 +00:00
|
|
|
nsAutoTArray<uint32_t, MOZ_ARRAY_LENGTH(data)> array;
|
2006-11-02 19:33:10 +00:00
|
|
|
|
|
|
|
void* hdr = array.DebugGetHeader();
|
2012-08-22 15:56:38 +00:00
|
|
|
if (hdr == nsTArray<uint32_t>().DebugGetHeader())
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2014-01-30 18:26:54 +00:00
|
|
|
if (hdr == nsAutoTArray<uint32_t, MOZ_ARRAY_LENGTH(data)>().DebugGetHeader())
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2006-11-02 19:33:10 +00:00
|
|
|
|
2006-11-04 05:14:55 +00:00
|
|
|
array.AppendElement(1u);
|
2006-11-02 19:33:10 +00:00
|
|
|
if (hdr != array.DebugGetHeader())
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2006-11-02 19:33:10 +00:00
|
|
|
|
2006-11-04 05:14:55 +00:00
|
|
|
array.RemoveElement(1u);
|
2011-10-11 05:50:08 +00:00
|
|
|
array.AppendElements(data, ArrayLength(data));
|
2006-11-02 19:33:10 +00:00
|
|
|
if (hdr != array.DebugGetHeader())
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2006-11-02 19:33:10 +00:00
|
|
|
|
2006-11-04 05:14:55 +00:00
|
|
|
array.AppendElement(2u);
|
2006-11-02 19:33:10 +00:00
|
|
|
if (hdr == array.DebugGetHeader())
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2006-11-02 19:33:10 +00:00
|
|
|
|
|
|
|
array.Clear();
|
|
|
|
array.Compact();
|
|
|
|
if (hdr != array.DebugGetHeader())
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2011-10-11 05:50:08 +00:00
|
|
|
array.AppendElements(data, ArrayLength(data));
|
2006-11-02 19:33:10 +00:00
|
|
|
if (hdr != array.DebugGetHeader())
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2006-11-02 19:33:10 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
nsTArray<uint32_t> array2;
|
2006-11-02 19:33:10 +00:00
|
|
|
void* emptyHdr = array2.DebugGetHeader();
|
|
|
|
array.SwapElements(array2);
|
|
|
|
if (emptyHdr == array.DebugGetHeader())
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2006-11-02 19:33:10 +00:00
|
|
|
if (hdr == array2.DebugGetHeader())
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t i;
|
2011-10-11 05:50:08 +00:00
|
|
|
for (i = 0; i < ArrayLength(data); ++i) {
|
2006-11-02 19:33:10 +00:00
|
|
|
if (array2[i] != data[i])
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2006-11-02 19:33:10 +00:00
|
|
|
}
|
|
|
|
if (!array.IsEmpty())
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2006-11-02 19:33:10 +00:00
|
|
|
|
|
|
|
array.Compact();
|
2011-10-11 05:50:08 +00:00
|
|
|
array.AppendElements(data, ArrayLength(data));
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t data3[] = {5, 7, 11};
|
2014-01-30 18:26:54 +00:00
|
|
|
nsAutoTArray<uint32_t, MOZ_ARRAY_LENGTH(data3)> array3;
|
2011-10-11 05:50:08 +00:00
|
|
|
array3.AppendElements(data3, ArrayLength(data3));
|
2006-11-02 19:33:10 +00:00
|
|
|
array.SwapElements(array3);
|
2011-10-11 05:50:08 +00:00
|
|
|
for (i = 0; i < ArrayLength(data); ++i) {
|
2006-11-02 19:33:10 +00:00
|
|
|
if (array3[i] != data[i])
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2006-11-02 19:33:10 +00:00
|
|
|
}
|
2011-10-11 05:50:08 +00:00
|
|
|
for (i = 0; i < ArrayLength(data3); ++i) {
|
2006-11-02 19:33:10 +00:00
|
|
|
if (array[i] != data3[i])
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2006-11-02 19:33:10 +00:00
|
|
|
}
|
|
|
|
|
2011-10-17 14:59:28 +00:00
|
|
|
return true;
|
2006-11-02 19:33:10 +00:00
|
|
|
}
|
2006-11-03 00:52:40 +00:00
|
|
|
#endif
|
2006-11-02 19:33:10 +00:00
|
|
|
|
|
|
|
//----
|
|
|
|
|
2009-04-11 01:08:08 +00:00
|
|
|
// IndexOf used to potentially scan beyond the end of the array. Test for
|
|
|
|
// this incorrect behavior by adding a value (5), removing it, then seeing
|
|
|
|
// if IndexOf finds it.
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool test_indexof() {
|
2009-04-11 01:08:08 +00:00
|
|
|
nsTArray<int> array;
|
|
|
|
array.AppendElement(0);
|
|
|
|
// add and remove the 5
|
|
|
|
array.AppendElement(5);
|
|
|
|
array.RemoveElementAt(1);
|
|
|
|
// we should not find the 5!
|
2010-04-02 16:34:31 +00:00
|
|
|
return array.IndexOf(5, 1) == array.NoIndex;
|
2009-04-11 01:08:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//----
|
|
|
|
|
2010-05-05 17:21:23 +00:00
|
|
|
template <class Array>
|
2012-08-22 15:56:38 +00:00
|
|
|
static bool is_heap(const Array& ary, uint32_t len) {
|
|
|
|
uint32_t index = 1;
|
2010-05-05 17:21:23 +00:00
|
|
|
while (index < len) {
|
|
|
|
if (ary[index] > ary[(index - 1) >> 1])
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2010-05-05 17:21:23 +00:00
|
|
|
index++;
|
|
|
|
}
|
2011-10-17 14:59:28 +00:00
|
|
|
return true;
|
2010-05-05 17:21:23 +00:00
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool test_heap() {
|
2010-05-05 17:21:23 +00:00
|
|
|
const int data[] = {4,6,8,2,4,1,5,7,3};
|
|
|
|
nsTArray<int> ary;
|
2011-10-11 05:50:08 +00:00
|
|
|
ary.AppendElements(data, ArrayLength(data));
|
2010-05-05 17:21:23 +00:00
|
|
|
// make a heap and make sure it's a heap
|
|
|
|
ary.MakeHeap();
|
2011-10-11 05:50:08 +00:00
|
|
|
if (!is_heap(ary, ArrayLength(data)))
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2010-05-05 17:21:23 +00:00
|
|
|
// pop the root and make sure it's still a heap
|
|
|
|
int root = ary[0];
|
|
|
|
ary.PopHeap();
|
2011-10-11 05:50:08 +00:00
|
|
|
if (!is_heap(ary, ArrayLength(data) - 1))
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2010-05-05 17:21:23 +00:00
|
|
|
// push the previously poped value back on and make sure it's still a heap
|
|
|
|
ary.PushHeap(root);
|
2011-10-11 05:50:08 +00:00
|
|
|
if (!is_heap(ary, ArrayLength(data)))
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2010-05-05 17:21:23 +00:00
|
|
|
// make sure the heap looks like what we expect
|
|
|
|
const int expected_data[] = {8,7,5,6,4,1,4,2,3};
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t index;
|
2011-10-11 05:50:08 +00:00
|
|
|
for (index = 0; index < ArrayLength(data); index++)
|
2010-05-05 17:21:23 +00:00
|
|
|
if (ary[index] != expected_data[index])
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
|
|
|
return true;
|
2010-05-05 17:21:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//----
|
|
|
|
|
2011-09-22 15:22:20 +00:00
|
|
|
// An array |arr| is using its auto buffer if |&arr < arr.Elements()| and
|
|
|
|
// |arr.Elements() - &arr| is small.
|
|
|
|
|
|
|
|
#define IS_USING_AUTO(arr) \
|
|
|
|
((uintptr_t) &(arr) < (uintptr_t) arr.Elements() && \
|
2012-08-09 07:09:31 +00:00
|
|
|
((ptrdiff_t)arr.Elements() - (ptrdiff_t)&arr) <= 16)
|
2011-09-22 15:22:20 +00:00
|
|
|
|
|
|
|
#define CHECK_IS_USING_AUTO(arr) \
|
|
|
|
do { \
|
|
|
|
if (!(IS_USING_AUTO(arr))) { \
|
|
|
|
printf("%s:%d CHECK_IS_USING_AUTO(%s) failed.\n", \
|
|
|
|
__FILE__, __LINE__, #arr); \
|
2011-10-17 14:59:28 +00:00
|
|
|
return false; \
|
2011-09-22 15:22:20 +00:00
|
|
|
} \
|
|
|
|
} while(0)
|
|
|
|
|
|
|
|
#define CHECK_NOT_USING_AUTO(arr) \
|
|
|
|
do { \
|
|
|
|
if (IS_USING_AUTO(arr)) { \
|
|
|
|
printf("%s:%d CHECK_NOT_USING_AUTO(%s) failed.\n", \
|
|
|
|
__FILE__, __LINE__, #arr); \
|
2011-10-17 14:59:28 +00:00
|
|
|
return false; \
|
2011-09-22 15:22:20 +00:00
|
|
|
} \
|
|
|
|
} while(0)
|
|
|
|
|
|
|
|
#define CHECK_USES_SHARED_EMPTY_HDR(arr) \
|
|
|
|
do { \
|
|
|
|
nsTArray<int> _empty; \
|
|
|
|
if (_empty.Elements() != arr.Elements()) { \
|
|
|
|
printf("%s:%d CHECK_USES_EMPTY_HDR(%s) failed.\n", \
|
|
|
|
__FILE__, __LINE__, #arr); \
|
2011-10-17 14:59:28 +00:00
|
|
|
return false; \
|
2011-09-22 15:22:20 +00:00
|
|
|
} \
|
|
|
|
} while(0)
|
|
|
|
|
|
|
|
#define CHECK_EQ_INT(actual, expected) \
|
|
|
|
do { \
|
|
|
|
if ((actual) != (expected)) { \
|
|
|
|
printf("%s:%d CHECK_EQ_INT(%s=%u, %s=%u) failed.\n", \
|
|
|
|
__FILE__, __LINE__, #actual, (actual), #expected, (expected)); \
|
2011-10-17 14:59:28 +00:00
|
|
|
return false; \
|
2011-09-22 15:22:20 +00:00
|
|
|
} \
|
|
|
|
} while(0)
|
|
|
|
|
|
|
|
#define CHECK_ARRAY(arr, data) \
|
|
|
|
do { \
|
2012-08-22 15:56:38 +00:00
|
|
|
CHECK_EQ_INT((arr).Length(), (uint32_t)ArrayLength(data)); \
|
|
|
|
for (uint32_t _i = 0; _i < ArrayLength(data); _i++) { \
|
2011-09-22 15:22:20 +00:00
|
|
|
CHECK_EQ_INT((arr)[_i], (data)[_i]); \
|
|
|
|
} \
|
|
|
|
} while(0)
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool test_swap() {
|
2011-09-22 15:22:20 +00:00
|
|
|
// Test nsTArray::SwapElements. Unfortunately there are many cases.
|
|
|
|
int data1[] = {8, 6, 7, 5};
|
|
|
|
int data2[] = {3, 0, 9};
|
|
|
|
|
|
|
|
// Swap two auto arrays.
|
|
|
|
{
|
|
|
|
nsAutoTArray<int, 8> a;
|
|
|
|
nsAutoTArray<int, 6> b;
|
|
|
|
|
2011-10-11 05:50:08 +00:00
|
|
|
a.AppendElements(data1, ArrayLength(data1));
|
|
|
|
b.AppendElements(data2, ArrayLength(data2));
|
2011-09-22 15:22:20 +00:00
|
|
|
CHECK_IS_USING_AUTO(a);
|
|
|
|
CHECK_IS_USING_AUTO(b);
|
|
|
|
|
|
|
|
a.SwapElements(b);
|
|
|
|
|
|
|
|
CHECK_IS_USING_AUTO(a);
|
|
|
|
CHECK_IS_USING_AUTO(b);
|
|
|
|
CHECK_ARRAY(a, data2);
|
|
|
|
CHECK_ARRAY(b, data1);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Swap two auto arrays -- one whose data lives on the heap, the other whose
|
|
|
|
// data lives on the stack -- which each fits into the other's auto storage.
|
|
|
|
{
|
|
|
|
nsAutoTArray<int, 3> a;
|
|
|
|
nsAutoTArray<int, 3> b;
|
|
|
|
|
2011-10-11 05:50:08 +00:00
|
|
|
a.AppendElements(data1, ArrayLength(data1));
|
2011-09-22 15:22:20 +00:00
|
|
|
a.RemoveElementAt(3);
|
2011-10-11 05:50:08 +00:00
|
|
|
b.AppendElements(data2, ArrayLength(data2));
|
2011-09-22 15:22:20 +00:00
|
|
|
|
|
|
|
// Here and elsewhere, we assert that if we start with an auto array
|
|
|
|
// capable of storing N elements, we store N+1 elements into the array, and
|
|
|
|
// then we remove one element, that array is still not using its auto
|
|
|
|
// buffer.
|
|
|
|
//
|
|
|
|
// This isn't at all required by the TArray API. It would be fine if, when
|
|
|
|
// we shrink back to N elements, the TArray frees its heap storage and goes
|
|
|
|
// back to using its stack storage. But we assert here as a check that the
|
|
|
|
// test does what we expect. If the TArray implementation changes, just
|
|
|
|
// change the failing assertions.
|
|
|
|
CHECK_NOT_USING_AUTO(a);
|
|
|
|
|
|
|
|
// This check had better not change, though.
|
|
|
|
CHECK_IS_USING_AUTO(b);
|
|
|
|
|
|
|
|
a.SwapElements(b);
|
|
|
|
|
|
|
|
CHECK_IS_USING_AUTO(b);
|
|
|
|
CHECK_ARRAY(a, data2);
|
|
|
|
int expectedB[] = {8, 6, 7};
|
|
|
|
CHECK_ARRAY(b, expectedB);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Swap two auto arrays which are using heap storage such that one fits into
|
|
|
|
// the other's auto storage, but the other needs to stay on the heap.
|
|
|
|
{
|
|
|
|
nsAutoTArray<int, 3> a;
|
|
|
|
nsAutoTArray<int, 2> b;
|
2011-10-11 05:50:08 +00:00
|
|
|
a.AppendElements(data1, ArrayLength(data1));
|
2011-09-22 15:22:20 +00:00
|
|
|
a.RemoveElementAt(3);
|
|
|
|
|
2011-10-11 05:50:08 +00:00
|
|
|
b.AppendElements(data2, ArrayLength(data2));
|
2011-09-22 15:22:20 +00:00
|
|
|
b.RemoveElementAt(2);
|
|
|
|
|
|
|
|
CHECK_NOT_USING_AUTO(a);
|
|
|
|
CHECK_NOT_USING_AUTO(b);
|
|
|
|
|
|
|
|
a.SwapElements(b);
|
|
|
|
|
|
|
|
CHECK_NOT_USING_AUTO(b);
|
|
|
|
|
|
|
|
int expected1[] = {3, 0};
|
|
|
|
int expected2[] = {8, 6, 7};
|
|
|
|
|
|
|
|
CHECK_ARRAY(a, expected1);
|
|
|
|
CHECK_ARRAY(b, expected2);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Swap two arrays, neither of which fits into the other's auto-storage.
|
|
|
|
{
|
|
|
|
nsAutoTArray<int, 1> a;
|
|
|
|
nsAutoTArray<int, 3> b;
|
|
|
|
|
2011-10-11 05:50:08 +00:00
|
|
|
a.AppendElements(data1, ArrayLength(data1));
|
|
|
|
b.AppendElements(data2, ArrayLength(data2));
|
2011-09-22 15:22:20 +00:00
|
|
|
|
|
|
|
a.SwapElements(b);
|
|
|
|
|
|
|
|
CHECK_ARRAY(a, data2);
|
|
|
|
CHECK_ARRAY(b, data1);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Swap an empty nsTArray with a non-empty nsAutoTArray.
|
|
|
|
{
|
|
|
|
nsTArray<int> a;
|
|
|
|
nsAutoTArray<int, 3> b;
|
|
|
|
|
2011-10-11 05:50:08 +00:00
|
|
|
b.AppendElements(data2, ArrayLength(data2));
|
2011-09-22 15:22:20 +00:00
|
|
|
CHECK_IS_USING_AUTO(b);
|
|
|
|
|
|
|
|
a.SwapElements(b);
|
|
|
|
|
|
|
|
CHECK_ARRAY(a, data2);
|
|
|
|
CHECK_EQ_INT(b.Length(), 0);
|
|
|
|
CHECK_IS_USING_AUTO(b);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Swap two big auto arrays.
|
|
|
|
{
|
2012-10-19 20:26:50 +00:00
|
|
|
const unsigned size = 8192;
|
|
|
|
nsAutoTArray<unsigned, size> a;
|
|
|
|
nsAutoTArray<unsigned, size> b;
|
2011-09-22 15:22:20 +00:00
|
|
|
|
2012-10-19 20:26:50 +00:00
|
|
|
for (unsigned i = 0; i < size; i++) {
|
2011-09-22 15:22:20 +00:00
|
|
|
a.AppendElement(i);
|
|
|
|
b.AppendElement(i + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
CHECK_IS_USING_AUTO(a);
|
|
|
|
CHECK_IS_USING_AUTO(b);
|
|
|
|
|
|
|
|
a.SwapElements(b);
|
|
|
|
|
|
|
|
CHECK_IS_USING_AUTO(a);
|
|
|
|
CHECK_IS_USING_AUTO(b);
|
|
|
|
|
|
|
|
CHECK_EQ_INT(a.Length(), size);
|
|
|
|
CHECK_EQ_INT(b.Length(), size);
|
|
|
|
|
2012-10-19 20:26:50 +00:00
|
|
|
for (unsigned i = 0; i < size; i++) {
|
2011-09-22 15:22:20 +00:00
|
|
|
CHECK_EQ_INT(a[i], i + 1);
|
|
|
|
CHECK_EQ_INT(b[i], i);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Swap two arrays and make sure that their capacities don't increase
|
|
|
|
// unnecessarily.
|
|
|
|
{
|
|
|
|
nsTArray<int> a;
|
|
|
|
nsTArray<int> b;
|
2011-10-11 05:50:08 +00:00
|
|
|
b.AppendElements(data2, ArrayLength(data2));
|
2011-09-22 15:22:20 +00:00
|
|
|
|
|
|
|
CHECK_EQ_INT(a.Capacity(), 0);
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t bCapacity = b.Capacity();
|
2011-09-22 15:22:20 +00:00
|
|
|
|
|
|
|
a.SwapElements(b);
|
|
|
|
|
|
|
|
// Make sure that we didn't increase the capacity of either array.
|
|
|
|
CHECK_ARRAY(a, data2);
|
|
|
|
CHECK_EQ_INT(b.Length(), 0);
|
|
|
|
CHECK_EQ_INT(b.Capacity(), 0);
|
|
|
|
CHECK_EQ_INT(a.Capacity(), bCapacity);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Swap an auto array with a TArray, then clear the auto array and make sure
|
|
|
|
// it doesn't forget the fact that it has an auto buffer.
|
|
|
|
{
|
|
|
|
nsTArray<int> a;
|
|
|
|
nsAutoTArray<int, 3> b;
|
|
|
|
|
2011-10-11 05:50:08 +00:00
|
|
|
a.AppendElements(data1, ArrayLength(data1));
|
2011-09-22 15:22:20 +00:00
|
|
|
|
|
|
|
a.SwapElements(b);
|
|
|
|
|
|
|
|
CHECK_EQ_INT(a.Length(), 0);
|
|
|
|
CHECK_ARRAY(b, data1);
|
|
|
|
|
|
|
|
b.Clear();
|
|
|
|
|
|
|
|
CHECK_USES_SHARED_EMPTY_HDR(a);
|
|
|
|
CHECK_IS_USING_AUTO(b);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Same thing as the previous test, but with more auto arrays.
|
|
|
|
{
|
|
|
|
nsAutoTArray<int, 16> a;
|
|
|
|
nsAutoTArray<int, 3> b;
|
|
|
|
|
2011-10-11 05:50:08 +00:00
|
|
|
a.AppendElements(data1, ArrayLength(data1));
|
2011-09-22 15:22:20 +00:00
|
|
|
|
|
|
|
a.SwapElements(b);
|
|
|
|
|
|
|
|
CHECK_EQ_INT(a.Length(), 0);
|
|
|
|
CHECK_ARRAY(b, data1);
|
|
|
|
|
|
|
|
b.Clear();
|
|
|
|
|
|
|
|
CHECK_IS_USING_AUTO(a);
|
|
|
|
CHECK_IS_USING_AUTO(b);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Swap an empty nsTArray and an empty nsAutoTArray.
|
|
|
|
{
|
|
|
|
nsAutoTArray<int, 8> a;
|
|
|
|
nsTArray<int> b;
|
|
|
|
|
|
|
|
a.SwapElements(b);
|
|
|
|
|
|
|
|
CHECK_IS_USING_AUTO(a);
|
|
|
|
CHECK_NOT_USING_AUTO(b);
|
|
|
|
CHECK_EQ_INT(a.Length(), 0);
|
|
|
|
CHECK_EQ_INT(b.Length(), 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Swap empty auto array with non-empty nsAutoTArray using malloc'ed storage.
|
|
|
|
// I promise, all these tests have a point.
|
|
|
|
{
|
|
|
|
nsAutoTArray<int, 2> a;
|
|
|
|
nsAutoTArray<int, 1> b;
|
|
|
|
|
2011-10-11 05:50:08 +00:00
|
|
|
a.AppendElements(data1, ArrayLength(data1));
|
2011-09-22 15:22:20 +00:00
|
|
|
|
|
|
|
a.SwapElements(b);
|
|
|
|
|
|
|
|
CHECK_IS_USING_AUTO(a);
|
|
|
|
CHECK_NOT_USING_AUTO(b);
|
|
|
|
CHECK_ARRAY(b, data1);
|
|
|
|
CHECK_EQ_INT(a.Length(), 0);
|
|
|
|
}
|
|
|
|
|
2011-10-17 14:59:28 +00:00
|
|
|
return true;
|
2011-09-22 15:22:20 +00:00
|
|
|
}
|
|
|
|
|
2012-01-26 17:51:34 +00:00
|
|
|
static bool test_fallible()
|
|
|
|
{
|
|
|
|
// Test that FallibleTArray works properly; that is, it never OOMs, but
|
|
|
|
// instead eventually returns false.
|
|
|
|
//
|
|
|
|
// This test is only meaningful on 32-bit systems. On a 64-bit system, we
|
|
|
|
// might never OOM.
|
|
|
|
if (sizeof(void*) > 4) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-11-29 17:48:08 +00:00
|
|
|
// Allocate a bunch of 128MB arrays. Larger allocations will fail on some
|
|
|
|
// platforms without actually hitting OOM.
|
2012-01-26 17:51:34 +00:00
|
|
|
//
|
2013-11-29 17:48:08 +00:00
|
|
|
// 36 * 128MB > 4GB, so we should definitely OOM by the 36th array.
|
|
|
|
const unsigned numArrays = 36;
|
2012-01-26 17:51:34 +00:00
|
|
|
FallibleTArray<char> arrays[numArrays];
|
2012-08-22 15:56:38 +00:00
|
|
|
for (uint32_t i = 0; i < numArrays; i++) {
|
2013-11-29 17:48:08 +00:00
|
|
|
bool success = arrays[i].SetCapacity(128 * 1024 * 1024);
|
2012-01-26 17:51:34 +00:00
|
|
|
if (!success) {
|
|
|
|
// We got our OOM. Check that it didn't come too early.
|
2013-11-29 17:48:08 +00:00
|
|
|
if (i < 8) {
|
2012-01-26 17:51:34 +00:00
|
|
|
printf("test_fallible: Got OOM on iteration %d. Too early!\n", i);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// No OOM? That's...weird.
|
|
|
|
printf("test_fallible: Didn't OOM or crash? nsTArray::SetCapacity "
|
|
|
|
"must be lying.\n");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-12-19 01:16:05 +00:00
|
|
|
static bool test_conversion_operator() {
|
|
|
|
FallibleTArray<int> f;
|
|
|
|
const FallibleTArray<int> fconst;
|
|
|
|
AutoFallibleTArray<int, 8> fauto;
|
|
|
|
const AutoFallibleTArray<int, 8> fautoconst;
|
|
|
|
|
|
|
|
InfallibleTArray<int> i;
|
|
|
|
const InfallibleTArray<int> iconst;
|
|
|
|
AutoInfallibleTArray<int, 8> iauto;
|
|
|
|
const AutoInfallibleTArray<int, 8> iautoconst;
|
|
|
|
|
|
|
|
nsTArray<int> t;
|
|
|
|
const nsTArray<int> tconst;
|
|
|
|
nsAutoTArray<int, 8> tauto;
|
|
|
|
const nsAutoTArray<int, 8> tautoconst;
|
|
|
|
|
|
|
|
#define CHECK_ARRAY_CAST(type) \
|
|
|
|
do { \
|
|
|
|
const type<int>& z1 = f; \
|
|
|
|
if ((void*)&z1 != (void*)&f) return false; \
|
|
|
|
const type<int>& z2 = fconst; \
|
|
|
|
if ((void*)&z2 != (void*)&fconst) return false; \
|
|
|
|
const type<int>& z3 = fauto; \
|
|
|
|
if ((void*)&z3 != (void*)&fauto) return false; \
|
|
|
|
const type<int>& z4 = fautoconst; \
|
|
|
|
if ((void*)&z4 != (void*)&fautoconst) return false; \
|
|
|
|
const type<int>& z5 = i; \
|
|
|
|
if ((void*)&z5 != (void*)&i) return false; \
|
|
|
|
const type<int>& z6 = iconst; \
|
|
|
|
if ((void*)&z6 != (void*)&iconst) return false; \
|
|
|
|
const type<int>& z7 = iauto; \
|
|
|
|
if ((void*)&z7 != (void*)&iauto) return false; \
|
|
|
|
const type<int>& z8 = iautoconst; \
|
|
|
|
if ((void*)&z8 != (void*)&iautoconst) return false; \
|
|
|
|
const type<int>& z9 = t; \
|
|
|
|
if ((void*)&z9 != (void*)&t) return false; \
|
|
|
|
const type<int>& z10 = tconst; \
|
|
|
|
if ((void*)&z10 != (void*)&tconst) return false; \
|
|
|
|
const type<int>& z11 = tauto; \
|
|
|
|
if ((void*)&z11 != (void*)&tauto) return false; \
|
|
|
|
const type<int>& z12 = tautoconst; \
|
|
|
|
if ((void*)&z12 != (void*)&tautoconst) return false; \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
CHECK_ARRAY_CAST(FallibleTArray);
|
|
|
|
CHECK_ARRAY_CAST(InfallibleTArray);
|
|
|
|
CHECK_ARRAY_CAST(nsTArray);
|
|
|
|
|
|
|
|
#undef CHECK_ARRAY_CAST
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-09-08 02:05:02 +00:00
|
|
|
template<class T>
|
|
|
|
struct BufAccessor : public T
|
|
|
|
{
|
|
|
|
void* GetHdr() { return T::mHdr; }
|
|
|
|
};
|
|
|
|
|
|
|
|
static bool test_SetLengthAndRetainStorage_no_ctor() {
|
|
|
|
// 1050 because sizeof(int)*1050 is more than a page typically.
|
|
|
|
const int N = 1050;
|
|
|
|
FallibleTArray<int> f;
|
|
|
|
AutoFallibleTArray<int, N> fauto;
|
|
|
|
|
|
|
|
InfallibleTArray<int> i;
|
|
|
|
AutoInfallibleTArray<int, N> iauto;
|
|
|
|
|
|
|
|
nsTArray<int> t;
|
|
|
|
nsAutoTArray<int, N> tauto;
|
|
|
|
|
|
|
|
#define LPAREN (
|
|
|
|
#define RPAREN )
|
|
|
|
#define FOR_EACH(pre, post) \
|
|
|
|
do { \
|
|
|
|
pre f post; \
|
|
|
|
pre fauto post; \
|
|
|
|
pre i post; \
|
|
|
|
pre iauto post; \
|
|
|
|
pre t post; \
|
|
|
|
pre tauto post; \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
// Setup test arrays.
|
|
|
|
FOR_EACH(;, .SetLength(N));
|
|
|
|
for (int n = 0; n < N; ++n) {
|
|
|
|
FOR_EACH(;, [n] = n);
|
|
|
|
}
|
|
|
|
|
|
|
|
void* initial_Hdrs[] = {
|
|
|
|
static_cast<BufAccessor<FallibleTArray<int> >&>(f).GetHdr(),
|
|
|
|
static_cast<BufAccessor<AutoFallibleTArray<int, N> >&>(fauto).GetHdr(),
|
|
|
|
static_cast<BufAccessor<InfallibleTArray<int> >&>(i).GetHdr(),
|
|
|
|
static_cast<BufAccessor<AutoInfallibleTArray<int, N> >&>(iauto).GetHdr(),
|
|
|
|
static_cast<BufAccessor<nsTArray<int> >&>(t).GetHdr(),
|
|
|
|
static_cast<BufAccessor<nsAutoTArray<int, N> >&>(tauto).GetHdr(),
|
|
|
|
nullptr
|
|
|
|
};
|
|
|
|
|
|
|
|
// SetLengthAndRetainStorage(n), should NOT overwrite memory when T hasn't
|
|
|
|
// a default constructor.
|
|
|
|
FOR_EACH(;, .SetLengthAndRetainStorage(8));
|
|
|
|
FOR_EACH(;, .SetLengthAndRetainStorage(12));
|
|
|
|
for (int n = 0; n < 12; ++n) {
|
|
|
|
FOR_EACH(if LPAREN, [n] != n RPAREN return false);
|
|
|
|
}
|
|
|
|
FOR_EACH(;, .SetLengthAndRetainStorage(0));
|
|
|
|
FOR_EACH(;, .SetLengthAndRetainStorage(N));
|
|
|
|
for (int n = 0; n < N; ++n) {
|
|
|
|
FOR_EACH(if LPAREN, [n] != n RPAREN return false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void* current_Hdrs[] = {
|
|
|
|
static_cast<BufAccessor<FallibleTArray<int> >&>(f).GetHdr(),
|
|
|
|
static_cast<BufAccessor<AutoFallibleTArray<int, N> >&>(fauto).GetHdr(),
|
|
|
|
static_cast<BufAccessor<InfallibleTArray<int> >&>(i).GetHdr(),
|
|
|
|
static_cast<BufAccessor<AutoInfallibleTArray<int, N> >&>(iauto).GetHdr(),
|
|
|
|
static_cast<BufAccessor<nsTArray<int> >&>(t).GetHdr(),
|
|
|
|
static_cast<BufAccessor<nsAutoTArray<int, N> >&>(tauto).GetHdr(),
|
|
|
|
nullptr
|
|
|
|
};
|
|
|
|
|
|
|
|
// SetLengthAndRetainStorage(n) should NOT have reallocated the internal
|
|
|
|
// memory.
|
|
|
|
if (sizeof(initial_Hdrs) != sizeof(current_Hdrs)) return false;
|
|
|
|
for (size_t n = 0; n < sizeof(current_Hdrs) / sizeof(current_Hdrs[0]); ++n) {
|
|
|
|
if (current_Hdrs[n] != initial_Hdrs[n]) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#undef FOR_EACH
|
|
|
|
#undef LPAREN
|
|
|
|
#undef RPAREN
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-09-22 15:22:20 +00:00
|
|
|
//----
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
typedef bool (*TestFunc)();
|
2005-11-23 19:44:16 +00:00
|
|
|
#define DECL_TEST(name) { #name, name }
|
|
|
|
|
|
|
|
static const struct Test {
|
|
|
|
const char* name;
|
|
|
|
TestFunc func;
|
|
|
|
} tests[] = {
|
|
|
|
DECL_TEST(test_int_array),
|
|
|
|
DECL_TEST(test_int64_array),
|
|
|
|
DECL_TEST(test_char_array),
|
|
|
|
DECL_TEST(test_uint32_array),
|
|
|
|
DECL_TEST(test_object_array),
|
|
|
|
DECL_TEST(test_string_array),
|
|
|
|
DECL_TEST(test_comptr_array),
|
2005-12-12 21:28:29 +00:00
|
|
|
DECL_TEST(test_refptr_array),
|
2006-10-17 21:40:07 +00:00
|
|
|
DECL_TEST(test_ptrarray),
|
2006-11-03 00:52:40 +00:00
|
|
|
#ifdef DEBUG
|
2006-11-02 19:33:10 +00:00
|
|
|
DECL_TEST(test_autoarray),
|
2006-11-03 00:52:40 +00:00
|
|
|
#endif
|
2009-04-11 01:08:08 +00:00
|
|
|
DECL_TEST(test_indexof),
|
2010-05-05 17:21:23 +00:00
|
|
|
DECL_TEST(test_heap),
|
2011-09-22 15:22:20 +00:00
|
|
|
DECL_TEST(test_swap),
|
2012-01-26 17:51:34 +00:00
|
|
|
DECL_TEST(test_fallible),
|
2012-12-19 01:16:05 +00:00
|
|
|
DECL_TEST(test_conversion_operator),
|
2013-09-08 02:05:02 +00:00
|
|
|
DECL_TEST(test_SetLengthAndRetainStorage_no_ctor),
|
2012-07-30 14:20:58 +00:00
|
|
|
{ nullptr, nullptr }
|
2005-11-23 19:44:16 +00:00
|
|
|
};
|
|
|
|
|
2008-08-18 16:45:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
using namespace TestTArray;
|
|
|
|
|
2005-11-23 19:44:16 +00:00
|
|
|
int main(int argc, char **argv) {
|
|
|
|
int count = 1;
|
|
|
|
if (argc > 1)
|
|
|
|
count = atoi(argv[1]);
|
|
|
|
|
2012-07-30 14:20:58 +00:00
|
|
|
if (NS_FAILED(NS_InitXPCOM2(nullptr, nullptr, nullptr)))
|
2005-11-23 19:44:16 +00:00
|
|
|
return -1;
|
|
|
|
|
2011-09-22 15:22:20 +00:00
|
|
|
bool success = true;
|
2005-11-23 19:44:16 +00:00
|
|
|
while (count--) {
|
2012-07-30 14:20:58 +00:00
|
|
|
for (const Test* t = tests; t->name != nullptr; ++t) {
|
2011-09-22 15:22:20 +00:00
|
|
|
bool test_result = t->func();
|
|
|
|
printf("%25s : %s\n", t->name, test_result ? "SUCCESS" : "FAILURE");
|
|
|
|
if (!test_result)
|
|
|
|
success = false;
|
2005-11-23 19:44:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-30 14:20:58 +00:00
|
|
|
NS_ShutdownXPCOM(nullptr);
|
2011-09-22 15:22:20 +00:00
|
|
|
return success ? 0 : -1;
|
2005-11-23 19:44:16 +00:00
|
|
|
}
|