gecko/gfx/tests/gtest/gfxSurfaceRefCountTest.cpp
Benoit Jacob 0f90257361 Bug 913872 - Take nested enums out of gfxASurface - 1/3 : automatic changes - r=jrmuizel
Generated by these regexes:

find . -name '*.h' -o -name '*.cpp' -o -name '*.mm' | grep -v '\.hg' | grep -v '^\.\/obj' | xargs sed -i 's/gfx[A-Za-z0-9_]*Surface\:\:[a-z]*\(\(ImageFormat\|SurfaceType\|ContentType\|MemoryLocation\)[0-9A-Za-z_]*\)/gfx\1/g'

find . -name '*.h' -o -name '*.cpp' -o -name '*.mm' | grep -v '\.hg' | grep -v '^\.\/obj' | xargs sed -i 's/gfx[A-Za-z0-9_]*Surface\:\:[a-z]*\(\(CONTENT_\|MEMORY_\)[0-9A-Za-z_]*\)/GFX_\1/g'

find . -name '*.h' -o -name '*.cpp' -o -name '*.mm' | grep -v '\.hg' | grep -v '^\.\/obj' | xargs sed -i 's/\(^\|[^A-Za-z0-9_]\)\(CONTENT_COLOR\|CONTENT_ALPHA\|CONTENT_COLOR_ALPHA\|CONTENT_SENTINEL\|MEMORY_IN_PROCESS_HEAP\|MEMORY_IN_PROCESS_NONHEAP\|MEMORY_OUT_OF_PROCESS\)\($\|[^A-Za-z0-9_]\)/\1GFX_\2\3/g'

find . -name '*.h' -o -name '*.cpp' -o -name '*.mm' | grep -v '\.hg' | grep -v '^\.\/obj' | xargs sed -i 's/\(^\|[^A-Za-z0-9_]\)\(ImageFormatARGB32\|ImageFormatRGB24\|ImageFormatA8\|ImageFormatA1\|ImageFormatRGB16_565\|ImageFormatUnknown\|SurfaceTypeImage\|SurfaceTypePDF\|SurfaceTypePS\|SurfaceTypeXlib\|SurfaceTypeXcb\|SurfaceTypeGlitz\|SurfaceTypeQuartz\|SurfaceTypeWin32\|SurfaceTypeBeOS\|SurfaceTypeDirectFB\|SurfaceTypeSVG\|SurfaceTypeOS2\|SurfaceTypeWin32Printing\|SurfaceTypeQuartzImage\|SurfaceTypeScript\|SurfaceTypeQPainter\|SurfaceTypeRecording\|SurfaceTypeVG\|SurfaceTypeGL\|SurfaceTypeDRM\|SurfaceTypeTee\|SurfaceTypeXML\|SurfaceTypeSkia\|SurfaceTypeSubsurface\|SurfaceTypeD2D\|SurfaceTypeMax\)\($\|[^A-Za-z0-9_]\)/\1gfx\2\3/g'
2013-09-24 16:45:13 -04:00

152 lines
3.8 KiB
C++

#include <stdio.h>
#include "gtest/gtest.h"
#include "gfxASurface.h"
#include "gfxImageSurface.h"
#include "cairo/cairo.h"
int
GetASurfaceRefCount(gfxASurface *s) {
NS_ADDREF(s);
return s->Release();
}
int
CheckInt (int value, int expected) {
if (value != expected) {
fprintf (stderr, "Expected %d got %d\n", expected, value);
return 1;
}
return 0;
}
int
CheckPointer (void *value, void *expected) {
if (value != expected) {
fprintf (stderr, "Expected %p got %p\n", expected, value);
return 1;
}
return 0;
}
static cairo_user_data_key_t destruction_key;
void
SurfaceDestroyNotifier (void *data) {
*(int *)data = 1;
}
int
TestNewSurface () {
int failures = 0;
int destroyed = 0;
nsRefPtr<gfxASurface> s = new gfxImageSurface (gfxIntSize(10, 10), gfxImageFormatARGB32);
cairo_surface_t *cs = s->CairoSurface();
cairo_surface_set_user_data (cs, &destruction_key, &destroyed, SurfaceDestroyNotifier);
failures += CheckInt (GetASurfaceRefCount(s.get()), 1);
failures += CheckInt (cairo_surface_get_reference_count(cs), 1);
failures += CheckInt (destroyed, 0);
cairo_surface_reference(cs);
failures += CheckInt (GetASurfaceRefCount(s.get()), 2);
failures += CheckInt (cairo_surface_get_reference_count(cs), 2);
failures += CheckInt (destroyed, 0);
gfxASurface *savedWrapper = s.get();
s = nullptr;
failures += CheckInt (cairo_surface_get_reference_count(cs), 1);
failures += CheckInt (destroyed, 0);
s = gfxASurface::Wrap(cs);
failures += CheckPointer (s.get(), savedWrapper);
failures += CheckInt (GetASurfaceRefCount(s.get()), 2);
failures += CheckInt (cairo_surface_get_reference_count(cs), 2);
failures += CheckInt (destroyed, 0);
cairo_surface_destroy(cs);
failures += CheckInt (GetASurfaceRefCount(s.get()), 1);
failures += CheckInt (cairo_surface_get_reference_count(cs), 1);
failures += CheckInt (destroyed, 0);
s = nullptr;
failures += CheckInt (destroyed, 1);
return failures;
}
int
TestExistingSurface () {
int failures = 0;
int destroyed = 0;
cairo_surface_t *cs = cairo_image_surface_create (CAIRO_FORMAT_ARGB32, 10, 10);
cairo_surface_set_user_data (cs, &destruction_key, &destroyed, SurfaceDestroyNotifier);
failures += CheckInt (cairo_surface_get_reference_count(cs), 1);
failures += CheckInt (destroyed, 0);
nsRefPtr<gfxASurface> s = gfxASurface::Wrap(cs);
failures += CheckInt (GetASurfaceRefCount(s.get()), 2);
cairo_surface_reference(cs);
failures += CheckInt (GetASurfaceRefCount(s.get()), 3);
failures += CheckInt (cairo_surface_get_reference_count(cs), 3);
failures += CheckInt (destroyed, 0);
gfxASurface *savedWrapper = s.get();
s = nullptr;
failures += CheckInt (cairo_surface_get_reference_count(cs), 2);
failures += CheckInt (destroyed, 0);
s = gfxASurface::Wrap(cs);
failures += CheckPointer (s.get(), savedWrapper);
failures += CheckInt (GetASurfaceRefCount(s.get()), 3);
failures += CheckInt (cairo_surface_get_reference_count(cs), 3);
failures += CheckInt (destroyed, 0);
cairo_surface_destroy(cs);
failures += CheckInt (GetASurfaceRefCount(s.get()), 2);
failures += CheckInt (cairo_surface_get_reference_count(cs), 2);
failures += CheckInt (destroyed, 0);
s = nullptr;
failures += CheckInt (cairo_surface_get_reference_count(cs), 1);
failures += CheckInt (destroyed, 0);
cairo_surface_destroy(cs);
failures += CheckInt (destroyed, 1);
return failures;
}
TEST(Gfx, SurfaceRefCount) {
int fail;
fail = TestNewSurface();
EXPECT_TRUE(fail == 0) << "TestNewSurface: " << fail << " failures";
fail = TestExistingSurface();
EXPECT_TRUE(fail == 0) << "TestExistingSurface: " << fail << " failures";
}