mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1111149 - Move TestArray.cpp to gtest and enable it; r=froydnj
--HG-- rename : xpcom/tests/TestArray.cpp => xpcom/glue/tests/gtest/TestArray.cpp extra : rebase_source : 204c2aa966c3df9949efa182e865de404256f386
This commit is contained in:
parent
7dde102fe9
commit
0287e573b6
@ -6,6 +6,7 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include "nsISupportsArray.h"
|
||||
#include "gtest/gtest.h"
|
||||
|
||||
// {9e70a320-be02-11d1-8031-006008159b5a}
|
||||
#define NS_IFOO_IID \
|
||||
@ -14,8 +15,6 @@
|
||||
|
||||
namespace TestArray {
|
||||
|
||||
static const bool kExitOnError = true;
|
||||
|
||||
class IFoo : public nsISupports {
|
||||
public:
|
||||
|
||||
@ -27,10 +26,10 @@ public:
|
||||
|
||||
NS_DEFINE_STATIC_IID_ACCESSOR(IFoo, NS_IFOO_IID)
|
||||
|
||||
class Foo : public IFoo {
|
||||
class Foo MOZ_FINAL : public IFoo {
|
||||
public:
|
||||
|
||||
Foo(int32_t aID);
|
||||
explicit Foo(int32_t aID);
|
||||
|
||||
// nsISupports implementation
|
||||
NS_DECL_ISUPPORTS
|
||||
@ -53,31 +52,16 @@ Foo::Foo(int32_t aID)
|
||||
{
|
||||
mID = aID;
|
||||
++gCount;
|
||||
fprintf(stdout, "init: %d (%p), %d total)\n",
|
||||
mID, static_cast<void*>(this), gCount);
|
||||
}
|
||||
|
||||
Foo::~Foo()
|
||||
{
|
||||
--gCount;
|
||||
fprintf(stdout, "destruct: %d (%p), %d remain)\n",
|
||||
mID, static_cast<void*>(this), gCount);
|
||||
}
|
||||
|
||||
NS_IMPL_ISUPPORTS(Foo, IFoo)
|
||||
|
||||
const char* AssertEqual(int32_t aValue1, int32_t aValue2)
|
||||
{
|
||||
if (aValue1 == aValue2) {
|
||||
return "OK";
|
||||
}
|
||||
if (kExitOnError) {
|
||||
exit(1);
|
||||
}
|
||||
return "ERROR";
|
||||
}
|
||||
|
||||
void DumpArray(nsISupportsArray* aArray, int32_t aExpectedCount, int32_t aElementIDs[], int32_t aExpectedTotal)
|
||||
void CheckArray(nsISupportsArray* aArray, int32_t aExpectedCount, int32_t aElementIDs[], int32_t aExpectedTotal)
|
||||
{
|
||||
uint32_t cnt = 0;
|
||||
#ifdef DEBUG
|
||||
@ -88,18 +72,12 @@ void DumpArray(nsISupportsArray* aArray, int32_t aExpectedCount, int32_t aElemen
|
||||
int32_t count = cnt;
|
||||
int32_t index;
|
||||
|
||||
fprintf(stdout, "object count %d = %d %s\n", Foo::gCount, aExpectedTotal,
|
||||
AssertEqual(Foo::gCount, aExpectedTotal));
|
||||
fprintf(stdout, "array count %d = %d %s\n", count, aExpectedCount,
|
||||
AssertEqual(count, aExpectedCount));
|
||||
|
||||
EXPECT_EQ(Foo::gCount, aExpectedTotal);
|
||||
EXPECT_EQ(count, aExpectedCount);
|
||||
|
||||
for (index = 0; (index < count) && (index < aExpectedCount); index++) {
|
||||
IFoo* foo = (IFoo*)(aArray->ElementAt(index));
|
||||
fprintf(stdout, "%2d: %d=%d (%p) c: %d %s\n",
|
||||
index, aElementIDs[index], foo->ID(),
|
||||
static_cast<void*>(foo), foo->RefCnt() - 1,
|
||||
AssertEqual(foo->ID(), aElementIDs[index]));
|
||||
foo->Release();
|
||||
nsCOMPtr<IFoo> foo = do_QueryElementAt(aArray, index);
|
||||
EXPECT_EQ(foo->ID(), aElementIDs[index]);
|
||||
}
|
||||
}
|
||||
|
||||
@ -116,96 +94,75 @@ void FillArray(nsISupportsArray* aArray, int32_t aCount)
|
||||
|
||||
using namespace TestArray;
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
TEST(Array, main)
|
||||
{
|
||||
nsISupportsArray* array;
|
||||
nsresult rv;
|
||||
|
||||
|
||||
if (NS_OK == (rv = NS_NewISupportsArray(&array))) {
|
||||
FillArray(array, 10);
|
||||
fprintf(stdout, "Array created:\n");
|
||||
int32_t fillResult[10] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9};
|
||||
DumpArray(array, 10, fillResult, 10);
|
||||
CheckArray(array, 10, fillResult, 10);
|
||||
|
||||
// test insert
|
||||
IFoo* foo = (IFoo*)array->ElementAt(3);
|
||||
foo->Release(); // pre-release to fix ref count for dumps
|
||||
nsCOMPtr<IFoo> foo = do_QueryElementAt(array, 3);
|
||||
array->InsertElementAt(foo, 5);
|
||||
fprintf(stdout, "insert 3 at 5:\n");
|
||||
int32_t insertResult[11] = {0, 1, 2, 3, 4, 3, 5, 6, 7, 8, 9};
|
||||
DumpArray(array, 11, insertResult, 10);
|
||||
fprintf(stdout, "insert 3 at 0:\n");
|
||||
CheckArray(array, 11, insertResult, 10);
|
||||
array->InsertElementAt(foo, 0);
|
||||
int32_t insertResult2[12] = {3, 0, 1, 2, 3, 4, 3, 5, 6, 7, 8, 9};
|
||||
DumpArray(array, 12, insertResult2, 10);
|
||||
fprintf(stdout, "append 3:\n");
|
||||
CheckArray(array, 12, insertResult2, 10);
|
||||
array->AppendElement(foo);
|
||||
int32_t appendResult[13] = {3, 0, 1, 2, 3, 4, 3, 5, 6, 7, 8, 9, 3};
|
||||
DumpArray(array, 13, appendResult, 10);
|
||||
CheckArray(array, 13, appendResult, 10);
|
||||
|
||||
|
||||
// test IndexOf && LastIndexOf
|
||||
int32_t expectedIndex[5] = {0, 4, 6, 12, -1};
|
||||
int32_t count = 0;
|
||||
int32_t index = array->IndexOf(foo);
|
||||
fprintf(stdout, "IndexOf(foo): %d=%d %s\n", index, expectedIndex[count],
|
||||
AssertEqual(index, expectedIndex[count]));
|
||||
EXPECT_EQ(index, expectedIndex[count]);
|
||||
while (-1 != index) {
|
||||
count++;
|
||||
index = array->IndexOfStartingAt(foo, index + 1);
|
||||
if (-1 != index)
|
||||
fprintf(stdout, "IndexOf(foo): %d=%d %s\n", index, expectedIndex[count],
|
||||
AssertEqual(index, expectedIndex[count]));
|
||||
EXPECT_EQ(index, expectedIndex[count]);
|
||||
}
|
||||
index = array->LastIndexOf(foo);
|
||||
count--;
|
||||
fprintf(stdout, "LastIndexOf(foo): %d=%d %s\n", index, expectedIndex[count],
|
||||
AssertEqual(index, expectedIndex[count]));
|
||||
EXPECT_EQ(index, expectedIndex[count]);
|
||||
|
||||
// test ReplaceElementAt
|
||||
fprintf(stdout, "ReplaceElementAt(8):\n");
|
||||
array->ReplaceElementAt(foo, 8);
|
||||
int32_t replaceResult[13] = {3, 0, 1, 2, 3, 4, 3, 5, 3, 7, 8, 9, 3};
|
||||
DumpArray(array, 13, replaceResult, 9);
|
||||
CheckArray(array, 13, replaceResult, 9);
|
||||
|
||||
// test RemoveElementAt, RemoveElement RemoveLastElement
|
||||
fprintf(stdout, "RemoveElementAt(0):\n");
|
||||
array->RemoveElementAt(0);
|
||||
int32_t removeResult[12] = {0, 1, 2, 3, 4, 3, 5, 3, 7, 8, 9, 3};
|
||||
DumpArray(array, 12, removeResult, 9);
|
||||
fprintf(stdout, "RemoveElementAt(7):\n");
|
||||
CheckArray(array, 12, removeResult, 9);
|
||||
array->RemoveElementAt(7);
|
||||
int32_t removeResult2[11] = {0, 1, 2, 3, 4, 3, 5, 7, 8, 9, 3};
|
||||
DumpArray(array, 11, removeResult2, 9);
|
||||
fprintf(stdout, "RemoveElement(foo):\n");
|
||||
CheckArray(array, 11, removeResult2, 9);
|
||||
array->RemoveElement(foo);
|
||||
int32_t removeResult3[10] = {0, 1, 2, 4, 3, 5, 7, 8, 9, 3};
|
||||
DumpArray(array, 10, removeResult3, 9);
|
||||
fprintf(stdout, "RemoveLastElement(foo):\n");
|
||||
CheckArray(array, 10, removeResult3, 9);
|
||||
array->RemoveLastElement(foo);
|
||||
int32_t removeResult4[9] = {0, 1, 2, 4, 3, 5, 7, 8, 9};
|
||||
DumpArray(array, 9, removeResult4, 9);
|
||||
CheckArray(array, 9, removeResult4, 9);
|
||||
|
||||
foo = nullptr;
|
||||
|
||||
// test clear
|
||||
fprintf(stdout, "clear array:\n");
|
||||
array->Clear();
|
||||
DumpArray(array, 0, 0, 0);
|
||||
fprintf(stdout, "add 4 new:\n");
|
||||
FillArray(array, 4);
|
||||
DumpArray(array, 4, fillResult, 4);
|
||||
CheckArray(array, 4, fillResult, 4);
|
||||
|
||||
// test compact
|
||||
fprintf(stdout, "compact array:\n");
|
||||
array->Compact();
|
||||
DumpArray(array, 4, fillResult, 4);
|
||||
CheckArray(array, 4, fillResult, 4);
|
||||
|
||||
// test delete
|
||||
fprintf(stdout, "release array:\n");
|
||||
NS_RELEASE(array);
|
||||
}
|
||||
else {
|
||||
fprintf(stdout, "error can't create array: %x\n", rv);
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
@ -5,6 +5,7 @@
|
||||
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
'TestArray.cpp',
|
||||
'TestFileUtils.cpp',
|
||||
'TestGCPostBarriers.cpp',
|
||||
'TestStrings.cpp',
|
||||
|
@ -80,7 +80,6 @@ if CONFIG['MOZ_MEMORY']:
|
||||
|
||||
# XXX Make these tests work in libxul builds.
|
||||
#CPP_UNIT_TESTS += [
|
||||
# 'TestArray',
|
||||
# 'TestCRT',
|
||||
# 'TestEncoding',
|
||||
# 'TestExpirationTracker',
|
||||
|
Loading…
Reference in New Issue
Block a user