This source file includes following definitions.
- GetProperty
- GetNumObjects
- RunTest
- TearDown
- TEST_F
- TEST_F
#include "config.h"
#include "FrameTestHelpers.h"
#include "URLTestHelpers.h"
#include "WebView.h"
#include <gtest/gtest.h>
#include "public/platform/Platform.h"
#include "public/platform/WebUnitTestSupport.h"
#include <v8/include/v8-profiler.h>
#include <v8/include/v8.h>
using namespace blink;
namespace {
const v8::HeapGraphNode* GetProperty(const v8::HeapGraphNode* node, v8::HeapGraphEdge::Type type, const char* name)
{
for (int i = 0, count = node->GetChildrenCount(); i < count; ++i) {
const v8::HeapGraphEdge* prop = node->GetChild(i);
if (prop->GetType() == type) {
v8::String::Utf8Value propName(prop->GetName());
if (!strcmp(name, *propName))
return prop->GetToNode();
}
}
return 0;
}
int GetNumObjects(const char* constructor)
{
v8::Isolate* isolate = v8::Isolate::GetCurrent();
v8::HandleScope scope(isolate);
v8::HeapProfiler* profiler = isolate->GetHeapProfiler();
const v8::HeapSnapshot* snapshot = profiler->TakeHeapSnapshot(v8::String::NewFromUtf8(isolate, ""));
if (!snapshot)
return -1;
int count = 0;
for (int i = 0; i < snapshot->GetNodesCount(); ++i) {
const v8::HeapGraphNode* node = snapshot->GetNode(i);
if (node->GetType() != v8::HeapGraphNode::kObject)
continue;
v8::String::Utf8Value nodeName(node->GetName());
if (!strcmp(constructor, *nodeName)) {
const v8::HeapGraphNode* constructorProp = GetProperty(node, v8::HeapGraphEdge::kProperty, "constructor");
if (constructorProp) {
v8::String::Utf8Value constructorName(constructorProp->GetName());
if (!strcmp(constructor, *constructorName))
continue;
}
++count;
}
}
return count;
}
class ListenerLeakTest : public testing::Test {
public:
void RunTest(const std::string& filename)
{
std::string baseURL("http://www.example.com/");
std::string fileName(filename);
bool executeScript = true;
URLTestHelpers::registerMockedURLFromBaseURL(WebString::fromUTF8(baseURL.c_str()), WebString::fromUTF8(fileName.c_str()));
webViewHelper.initializeAndLoad(baseURL + fileName, executeScript);
}
virtual void TearDown() OVERRIDE
{
Platform::current()->unitTestSupport()->unregisterAllMockedURLs();
}
protected:
FrameTestHelpers::WebViewHelper webViewHelper;
};
TEST_F(ListenerLeakTest, ReferenceCycle)
{
RunTest("listener/listener_leak1.html");
ASSERT_EQ(0, GetNumObjects("EventListenerLeakTestObject1"));
}
TEST_F(ListenerLeakTest, HiddenReferences)
{
RunTest("listener/listener_leak2.html");
ASSERT_EQ(1, GetNumObjects("EventListenerLeakTestObject2"));
}
}