2008-09-09 20:08:45 +00:00
|
|
|
// Copyright 2008 the V8 project authors. All rights reserved.
|
2008-08-22 13:33:59 +00:00
|
|
|
// Redistribution and use in source and binary forms, with or without
|
|
|
|
// modification, are permitted provided that the following conditions are
|
|
|
|
// met:
|
|
|
|
//
|
|
|
|
// * Redistributions of source code must retain the above copyright
|
|
|
|
// notice, this list of conditions and the following disclaimer.
|
|
|
|
// * Redistributions in binary form must reproduce the above
|
|
|
|
// copyright notice, this list of conditions and the following
|
|
|
|
// disclaimer in the documentation and/or other materials provided
|
|
|
|
// with the distribution.
|
|
|
|
// * Neither the name of Google Inc. nor the names of its
|
|
|
|
// contributors may be used to endorse or promote products derived
|
|
|
|
// from this software without specific prior written permission.
|
|
|
|
//
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
#ifndef CCTEST_H_
|
|
|
|
#define CCTEST_H_
|
|
|
|
|
2009-11-04 08:51:48 +00:00
|
|
|
#include "v8.h"
|
|
|
|
|
2008-08-22 13:33:59 +00:00
|
|
|
#ifndef TEST
|
2013-09-19 07:33:45 +00:00
|
|
|
#define TEST(Name) \
|
|
|
|
static void Test##Name(); \
|
|
|
|
CcTest register_test_##Name(Test##Name, __FILE__, #Name, NULL, true, true); \
|
|
|
|
static void Test##Name()
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef UNINITIALIZED_TEST
|
|
|
|
#define UNINITIALIZED_TEST(Name) \
|
|
|
|
static void Test##Name(); \
|
|
|
|
CcTest register_test_##Name(Test##Name, __FILE__, #Name, NULL, true, false); \
|
2009-02-03 08:35:03 +00:00
|
|
|
static void Test##Name()
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef DEPENDENT_TEST
|
2013-09-19 07:33:45 +00:00
|
|
|
#define DEPENDENT_TEST(Name, Dep) \
|
|
|
|
static void Test##Name(); \
|
|
|
|
CcTest register_test_##Name(Test##Name, __FILE__, #Name, #Dep, true, true); \
|
2008-09-05 00:04:37 +00:00
|
|
|
static void Test##Name()
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef DISABLED_TEST
|
2013-09-19 07:33:45 +00:00
|
|
|
#define DISABLED_TEST(Name) \
|
|
|
|
static void Test##Name(); \
|
|
|
|
CcTest register_test_##Name(Test##Name, __FILE__, #Name, NULL, false, true); \
|
2008-08-22 13:33:59 +00:00
|
|
|
static void Test##Name()
|
|
|
|
#endif
|
|
|
|
|
2014-01-17 10:52:00 +00:00
|
|
|
#define EXTENSION_LIST(V) \
|
|
|
|
V(GC_EXTENSION, "v8/gc") \
|
|
|
|
V(PRINT_EXTENSION, "v8/print") \
|
|
|
|
V(PROFILER_EXTENSION, "v8/profiler") \
|
|
|
|
V(TRACE_EXTENSION, "v8/trace")
|
2013-04-10 08:29:39 +00:00
|
|
|
|
|
|
|
#define DEFINE_EXTENSION_ID(Name, Ident) Name##_ID,
|
|
|
|
enum CcTestExtensionIds {
|
|
|
|
EXTENSION_LIST(DEFINE_EXTENSION_ID)
|
|
|
|
kMaxExtensions
|
|
|
|
};
|
|
|
|
#undef DEFINE_EXTENSION_ID
|
|
|
|
|
|
|
|
typedef v8::internal::EnumSet<CcTestExtensionIds> CcTestExtensionFlags;
|
|
|
|
#define DEFINE_EXTENSION_FLAG(Name, Ident) \
|
|
|
|
static const CcTestExtensionFlags Name(1 << Name##_ID);
|
|
|
|
static const CcTestExtensionFlags NO_EXTENSIONS(0);
|
|
|
|
static const CcTestExtensionFlags ALL_EXTENSIONS((1 << kMaxExtensions) - 1);
|
|
|
|
EXTENSION_LIST(DEFINE_EXTENSION_FLAG)
|
|
|
|
#undef DEFINE_EXTENSION_FLAG
|
|
|
|
|
2013-09-11 07:14:41 +00:00
|
|
|
|
2008-08-22 13:33:59 +00:00
|
|
|
class CcTest {
|
|
|
|
public:
|
|
|
|
typedef void (TestFunction)();
|
2008-09-05 00:04:37 +00:00
|
|
|
CcTest(TestFunction* callback, const char* file, const char* name,
|
2013-09-19 07:33:45 +00:00
|
|
|
const char* dependency, bool enabled, bool initialize);
|
|
|
|
void Run();
|
2008-08-27 10:11:39 +00:00
|
|
|
static CcTest* last() { return last_; }
|
2008-08-22 13:33:59 +00:00
|
|
|
CcTest* prev() { return prev_; }
|
|
|
|
const char* file() { return file_; }
|
|
|
|
const char* name() { return name_; }
|
2009-02-03 08:35:03 +00:00
|
|
|
const char* dependency() { return dependency_; }
|
2008-09-05 00:04:37 +00:00
|
|
|
bool enabled() { return enabled_; }
|
2013-05-06 13:01:03 +00:00
|
|
|
|
2013-09-19 07:33:45 +00:00
|
|
|
static v8::Isolate* isolate() {
|
2013-09-20 10:52:20 +00:00
|
|
|
CHECK(isolate_ != NULL);
|
2013-09-19 13:30:47 +00:00
|
|
|
isolate_used_ = true;
|
|
|
|
return isolate_;
|
2013-09-19 07:33:45 +00:00
|
|
|
}
|
2013-04-10 08:29:39 +00:00
|
|
|
|
2013-09-05 08:48:34 +00:00
|
|
|
static i::Isolate* i_isolate() {
|
2013-09-19 07:33:45 +00:00
|
|
|
return reinterpret_cast<i::Isolate*>(isolate());
|
2013-09-05 08:48:34 +00:00
|
|
|
}
|
|
|
|
|
2013-09-19 09:46:15 +00:00
|
|
|
static i::Heap* heap() {
|
|
|
|
return i_isolate()->heap();
|
|
|
|
}
|
|
|
|
|
2013-09-23 11:25:52 +00:00
|
|
|
static v8::Local<v8::Object> global() {
|
|
|
|
return isolate()->GetCurrentContext()->Global();
|
|
|
|
}
|
|
|
|
|
2013-09-19 13:30:47 +00:00
|
|
|
// TODO(dcarney): Remove.
|
|
|
|
// This must be called first in a test.
|
|
|
|
static void InitializeVM() {
|
|
|
|
CHECK(!isolate_used_);
|
|
|
|
CHECK(!initialize_called_);
|
|
|
|
initialize_called_ = true;
|
|
|
|
v8::HandleScope handle_scope(CcTest::isolate());
|
|
|
|
v8::Context::New(CcTest::isolate())->Enter();
|
|
|
|
}
|
|
|
|
|
2013-09-20 10:52:20 +00:00
|
|
|
// Only for UNINITIALIZED_TESTs
|
|
|
|
static void DisableAutomaticDispose();
|
|
|
|
|
2013-09-19 13:30:47 +00:00
|
|
|
// Helper function to configure a context.
|
|
|
|
// Must be in a HandleScope.
|
|
|
|
static v8::Local<v8::Context> NewContext(
|
|
|
|
CcTestExtensionFlags extensions,
|
|
|
|
v8::Isolate* isolate = CcTest::isolate());
|
2013-01-18 07:20:17 +00:00
|
|
|
|
2014-01-31 07:29:25 +00:00
|
|
|
static void TearDown() {
|
2014-02-04 12:23:30 +00:00
|
|
|
if (isolate_ != NULL) isolate_->Dispose();
|
2014-01-31 07:29:25 +00:00
|
|
|
}
|
|
|
|
|
2008-08-22 13:33:59 +00:00
|
|
|
private:
|
2013-05-06 13:01:03 +00:00
|
|
|
friend int main(int argc, char** argv);
|
2008-08-22 13:33:59 +00:00
|
|
|
TestFunction* callback_;
|
|
|
|
const char* file_;
|
|
|
|
const char* name_;
|
2009-02-03 08:35:03 +00:00
|
|
|
const char* dependency_;
|
2008-09-05 00:04:37 +00:00
|
|
|
bool enabled_;
|
2013-09-19 07:33:45 +00:00
|
|
|
bool initialize_;
|
2008-08-22 13:33:59 +00:00
|
|
|
CcTest* prev_;
|
2013-04-10 08:29:39 +00:00
|
|
|
static CcTest* last_;
|
2013-09-19 13:30:47 +00:00
|
|
|
static v8::Isolate* isolate_;
|
|
|
|
static bool initialize_called_;
|
|
|
|
static bool isolate_used_;
|
2008-08-22 13:33:59 +00:00
|
|
|
};
|
|
|
|
|
2009-11-04 08:51:48 +00:00
|
|
|
// Switches between all the Api tests using the threading support.
|
|
|
|
// In order to get a surprising but repeatable pattern of thread
|
|
|
|
// switching it has extra semaphores to control the order in which
|
|
|
|
// the tests alternate, not relying solely on the big V8 lock.
|
|
|
|
//
|
|
|
|
// A test is augmented with calls to ApiTestFuzzer::Fuzz() in its
|
|
|
|
// callbacks. This will have no effect when we are not running the
|
|
|
|
// thread fuzzing test. In the thread fuzzing test it will
|
|
|
|
// pseudorandomly select a successor thread and switch execution
|
|
|
|
// to that thread, suspending the current test.
|
|
|
|
class ApiTestFuzzer: public v8::internal::Thread {
|
|
|
|
public:
|
|
|
|
void CallTest();
|
|
|
|
|
|
|
|
// The ApiTestFuzzer is also a Thread, so it has a Run method.
|
|
|
|
virtual void Run();
|
|
|
|
|
2011-05-06 09:22:54 +00:00
|
|
|
enum PartOfTest { FIRST_PART,
|
|
|
|
SECOND_PART,
|
|
|
|
THIRD_PART,
|
|
|
|
FOURTH_PART,
|
|
|
|
LAST_PART = FOURTH_PART };
|
2009-11-04 08:51:48 +00:00
|
|
|
|
2012-01-13 13:09:52 +00:00
|
|
|
static void SetUp(PartOfTest part);
|
2009-11-04 08:51:48 +00:00
|
|
|
static void RunAllTests();
|
|
|
|
static void TearDown();
|
|
|
|
// This method switches threads if we are running the Threading test.
|
|
|
|
// Otherwise it does nothing.
|
|
|
|
static void Fuzz();
|
2011-09-08 19:57:14 +00:00
|
|
|
|
2009-11-04 08:51:48 +00:00
|
|
|
private:
|
2013-01-18 07:20:17 +00:00
|
|
|
explicit ApiTestFuzzer(int num)
|
|
|
|
: Thread("ApiTestFuzzer"),
|
|
|
|
test_number_(num),
|
2013-09-02 12:26:06 +00:00
|
|
|
gate_(0),
|
2013-01-18 07:20:17 +00:00
|
|
|
active_(true) {
|
|
|
|
}
|
2013-09-02 12:26:06 +00:00
|
|
|
~ApiTestFuzzer() {}
|
2013-01-18 07:20:17 +00:00
|
|
|
|
2009-11-04 08:51:48 +00:00
|
|
|
static bool fuzzing_;
|
|
|
|
static int tests_being_run_;
|
|
|
|
static int current_;
|
|
|
|
static int active_tests_;
|
|
|
|
static bool NextThread();
|
|
|
|
int test_number_;
|
2013-09-02 12:26:06 +00:00
|
|
|
v8::internal::Semaphore gate_;
|
2009-11-04 08:51:48 +00:00
|
|
|
bool active_;
|
|
|
|
void ContextSwitch();
|
|
|
|
static int GetNextTestNumber();
|
2013-09-02 12:26:06 +00:00
|
|
|
static v8::internal::Semaphore all_tests_done_;
|
2009-11-04 08:51:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#define THREADED_TEST(Name) \
|
|
|
|
static void Test##Name(); \
|
|
|
|
RegisterThreadedTest register_##Name(Test##Name, #Name); \
|
|
|
|
/* */ TEST(Name)
|
|
|
|
|
|
|
|
|
|
|
|
class RegisterThreadedTest {
|
|
|
|
public:
|
|
|
|
explicit RegisterThreadedTest(CcTest::TestFunction* callback,
|
|
|
|
const char* name)
|
|
|
|
: fuzzer_(NULL), callback_(callback), name_(name) {
|
|
|
|
prev_ = first_;
|
|
|
|
first_ = this;
|
|
|
|
count_++;
|
|
|
|
}
|
|
|
|
static int count() { return count_; }
|
|
|
|
static RegisterThreadedTest* nth(int i) {
|
|
|
|
CHECK(i < count());
|
|
|
|
RegisterThreadedTest* current = first_;
|
|
|
|
while (i > 0) {
|
|
|
|
i--;
|
|
|
|
current = current->prev_;
|
|
|
|
}
|
|
|
|
return current;
|
|
|
|
}
|
|
|
|
CcTest::TestFunction* callback() { return callback_; }
|
|
|
|
ApiTestFuzzer* fuzzer_;
|
|
|
|
const char* name() { return name_; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
static RegisterThreadedTest* first_;
|
|
|
|
static int count_;
|
|
|
|
CcTest::TestFunction* callback_;
|
|
|
|
RegisterThreadedTest* prev_;
|
|
|
|
const char* name_;
|
|
|
|
};
|
|
|
|
|
|
|
|
// A LocalContext holds a reference to a v8::Context.
|
|
|
|
class LocalContext {
|
|
|
|
public:
|
2013-09-19 10:31:04 +00:00
|
|
|
LocalContext(v8::Isolate* isolate,
|
|
|
|
v8::ExtensionConfiguration* extensions = 0,
|
|
|
|
v8::Handle<v8::ObjectTemplate> global_template =
|
|
|
|
v8::Handle<v8::ObjectTemplate>(),
|
|
|
|
v8::Handle<v8::Value> global_object = v8::Handle<v8::Value>()) {
|
|
|
|
Initialize(isolate, extensions, global_template, global_object);
|
|
|
|
}
|
|
|
|
|
2009-11-04 08:51:48 +00:00
|
|
|
LocalContext(v8::ExtensionConfiguration* extensions = 0,
|
|
|
|
v8::Handle<v8::ObjectTemplate> global_template =
|
|
|
|
v8::Handle<v8::ObjectTemplate>(),
|
2013-05-08 07:45:16 +00:00
|
|
|
v8::Handle<v8::Value> global_object = v8::Handle<v8::Value>()) {
|
2013-09-19 10:31:04 +00:00
|
|
|
Initialize(CcTest::isolate(), extensions, global_template, global_object);
|
2009-11-04 08:51:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
virtual ~LocalContext() {
|
2013-06-13 09:27:09 +00:00
|
|
|
v8::HandleScope scope(isolate_);
|
|
|
|
v8::Local<v8::Context>::New(isolate_, context_)->Exit();
|
2013-11-22 12:43:17 +00:00
|
|
|
context_.Reset();
|
2009-11-04 08:51:48 +00:00
|
|
|
}
|
|
|
|
|
2013-06-13 09:27:09 +00:00
|
|
|
v8::Context* operator->() {
|
|
|
|
return *reinterpret_cast<v8::Context**>(&context_);
|
|
|
|
}
|
|
|
|
v8::Context* operator*() { return operator->(); }
|
2009-11-04 08:51:48 +00:00
|
|
|
bool IsReady() { return !context_.IsEmpty(); }
|
|
|
|
|
|
|
|
v8::Local<v8::Context> local() {
|
2013-05-02 20:18:42 +00:00
|
|
|
return v8::Local<v8::Context>::New(isolate_, context_);
|
2009-11-04 08:51:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2013-09-19 10:31:04 +00:00
|
|
|
void Initialize(v8::Isolate* isolate,
|
|
|
|
v8::ExtensionConfiguration* extensions,
|
|
|
|
v8::Handle<v8::ObjectTemplate> global_template,
|
|
|
|
v8::Handle<v8::Value> global_object) {
|
|
|
|
v8::HandleScope scope(isolate);
|
|
|
|
v8::Local<v8::Context> context = v8::Context::New(isolate,
|
|
|
|
extensions,
|
|
|
|
global_template,
|
|
|
|
global_object);
|
|
|
|
context_.Reset(isolate, context);
|
|
|
|
context->Enter();
|
|
|
|
// We can't do this later perhaps because of a fatal error.
|
|
|
|
isolate_ = isolate;
|
|
|
|
}
|
|
|
|
|
2009-11-04 08:51:48 +00:00
|
|
|
v8::Persistent<v8::Context> context_;
|
2013-01-25 08:31:46 +00:00
|
|
|
v8::Isolate* isolate_;
|
2009-11-04 08:51:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static inline v8::Local<v8::Value> v8_num(double x) {
|
2014-01-03 14:31:17 +00:00
|
|
|
return v8::Number::New(v8::Isolate::GetCurrent(), x);
|
2009-11-04 08:51:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static inline v8::Local<v8::String> v8_str(const char* x) {
|
2013-11-22 12:43:17 +00:00
|
|
|
return v8::String::NewFromUtf8(v8::Isolate::GetCurrent(), x);
|
2009-11-04 08:51:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static inline v8::Local<v8::Script> v8_compile(const char* x) {
|
|
|
|
return v8::Script::Compile(v8_str(x));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Helper function that compiles and runs the source.
|
|
|
|
static inline v8::Local<v8::Value> CompileRun(const char* source) {
|
2013-11-22 12:43:17 +00:00
|
|
|
return v8::Script::Compile(
|
|
|
|
v8::String::NewFromUtf8(v8::Isolate::GetCurrent(), source))->Run();
|
2009-11-04 08:51:48 +00:00
|
|
|
}
|
|
|
|
|
2012-10-01 09:41:18 +00:00
|
|
|
|
2012-09-21 08:09:34 +00:00
|
|
|
// Helper function that compiles and runs the source with given origin.
|
|
|
|
static inline v8::Local<v8::Value> CompileRunWithOrigin(const char* source,
|
|
|
|
const char* origin_url,
|
|
|
|
int line_number,
|
|
|
|
int column_number) {
|
2013-11-22 12:43:17 +00:00
|
|
|
v8::Isolate* isolate = v8::Isolate::GetCurrent();
|
|
|
|
v8::ScriptOrigin origin(v8::String::NewFromUtf8(isolate, origin_url),
|
2014-01-03 14:31:17 +00:00
|
|
|
v8::Integer::New(isolate, line_number),
|
|
|
|
v8::Integer::New(isolate, column_number));
|
2013-11-22 12:43:17 +00:00
|
|
|
return v8::Script::Compile(v8::String::NewFromUtf8(isolate, source), &origin)
|
|
|
|
->Run();
|
2012-09-21 08:09:34 +00:00
|
|
|
}
|
|
|
|
|
2009-11-04 08:51:48 +00:00
|
|
|
|
2012-10-01 09:41:18 +00:00
|
|
|
// Pick a slightly different port to allow tests to be run in parallel.
|
|
|
|
static inline int FlagDependentPortOffset() {
|
|
|
|
return ::v8::internal::FLAG_crankshaft == false ? 100 :
|
|
|
|
::v8::internal::FLAG_always_opt ? 200 : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-02-06 13:21:28 +00:00
|
|
|
// Helper function that simulates a full new-space in the heap.
|
2012-11-20 10:47:31 +00:00
|
|
|
static inline void SimulateFullSpace(v8::internal::NewSpace* space) {
|
|
|
|
int new_linear_size = static_cast<int>(
|
|
|
|
*space->allocation_limit_address() - *space->allocation_top_address());
|
2013-11-14 15:14:37 +00:00
|
|
|
if (new_linear_size == 0) return;
|
2012-11-20 10:47:31 +00:00
|
|
|
v8::internal::MaybeObject* maybe = space->AllocateRaw(new_linear_size);
|
|
|
|
v8::internal::FreeListNode* node = v8::internal::FreeListNode::cast(maybe);
|
|
|
|
node->set_size(space->heap(), new_linear_size);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Helper function that simulates a full old-space in the heap.
|
|
|
|
static inline void SimulateFullSpace(v8::internal::PagedSpace* space) {
|
2013-11-14 15:14:37 +00:00
|
|
|
space->EmptyAllocationInfo();
|
2012-11-20 10:47:31 +00:00
|
|
|
space->ResetFreeList();
|
|
|
|
space->ClearStats();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-10-14 12:41:28 +00:00
|
|
|
// Helper class for new allocations tracking and checking.
|
|
|
|
// To use checking of JS allocations tracking in a test,
|
|
|
|
// just create an instance of this class.
|
|
|
|
class HeapObjectsTracker {
|
|
|
|
public:
|
|
|
|
HeapObjectsTracker() {
|
|
|
|
heap_profiler_ = i::Isolate::Current()->heap_profiler();
|
|
|
|
CHECK_NE(NULL, heap_profiler_);
|
2013-12-02 14:27:24 +00:00
|
|
|
heap_profiler_->StartHeapObjectsTracking(true);
|
2013-10-14 12:41:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
~HeapObjectsTracker() {
|
|
|
|
i::Isolate::Current()->heap()->CollectAllAvailableGarbage();
|
2013-12-03 09:48:30 +00:00
|
|
|
CHECK_EQ(0, heap_profiler_->heap_object_map()->FindUntrackedObjects());
|
2013-12-02 14:27:24 +00:00
|
|
|
heap_profiler_->StopHeapObjectsTracking();
|
2013-10-14 12:41:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
i::HeapProfiler* heap_profiler_;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2008-08-22 13:33:59 +00:00
|
|
|
#endif // ifndef CCTEST_H_
|