Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(332)

Unified Diff: Source/bindings/core/v8/V8ScriptRunnerTest.cpp

Issue 528013002: Restore in-memory parser cache for V8 compile. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add unit tests. Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/bindings/core/v8/V8ScriptRunnerTest.cpp
diff --git a/Source/bindings/core/v8/V8ScriptRunnerTest.cpp b/Source/bindings/core/v8/V8ScriptRunnerTest.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..2dbb0c5e35be6902912dcfd47fc25aaeca368e45
--- /dev/null
+++ b/Source/bindings/core/v8/V8ScriptRunnerTest.cpp
@@ -0,0 +1,157 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "config.h"
+#include "bindings/core/v8/V8ScriptRunner.h"
+
+#include "core/fetch/ScriptResource.h"
+#include <gtest/gtest.h>
+#include <v8.h>
+
+namespace blink {
+
+namespace {
+
+class V8ScriptRunnerTest : public ::testing::Test {
+public:
+ V8ScriptRunnerTest() { }
+ virtual ~V8ScriptRunnerTest() { }
+
+ static void SetUpTestCase()
+ {
+ cacheTagParser = StringHash::hash(v8::V8::GetVersion()) * 2;
+ cacheTagCode = cacheTagParser + 1;
+ }
+
+ virtual void SetUp() OVERRIDE
+ {
+ // To trick various layers of caching, increment a counter for each
+ // test and use it in code(), fielname() and url().
+ counter++;
+ }
+
+ virtual void TearDown() OVERRIDE
+ {
+ m_resourceRequest.clear();
+ m_resource.clear();
+ }
+
+ v8::Isolate* isolate()
+ {
+ return v8::Isolate::GetCurrent();
jochen (gone - plz use gerrit) 2014/09/05 11:48:04 i'm a bit surprised this works. Usually, v8 should
vogelheim 2014/09/05 11:54:12 I copied that from other *Test.cpp in this directo
jochen (gone - plz use gerrit) 2014/09/05 14:05:40 ok, i guess i should clean this up at some point
+ }
+ v8::Local<v8::String> v8String(const char* value)
+ {
+ return v8::String::NewFromOneByte(
+ isolate(), reinterpret_cast<const uint8_t*>(value));
+ }
+ v8::Local<v8::String> v8String(const WTF::String& value)
+ {
+ return v8String(value.ascii().data());
+ }
+ WTF::String code()
+ {
+ // Simple function for testing. Note:
+ // - Add counter to trick V8 code cache.
+ // - Pad counter to 1000 digits, to trick minimal cacheability threshold.
+ return WTF::String::format("a = function() { 1 + 1; } // %01000d\n", counter);
+ }
+ WTF::String filename()
+ {
+ return WTF::String::format("whatever%d.js", counter);
+ }
+ WTF::String url()
+ {
+ return WTF::String::format("http://bla.com/bla%d", counter);
+ }
+
+ bool compileScript(V8CacheOptions cacheOptions)
+ {
+ v8::HandleScope handleScope(isolate());
+ v8::Local<v8::Context> context = v8::Context::New(isolate());
+ v8::Context::Scope contextScope(context);
+ return !V8ScriptRunner::compileScript(
+ v8String(code()), filename(), WTF::TextPosition(), m_resource.get(),
+ isolate(), NotSharableCrossOrigin, cacheOptions)
+ .IsEmpty();
+ }
+
+ void setEmptyResource()
+ {
+ m_resourceRequest = WTF::adoptPtr(new ResourceRequest);
+ m_resource = WTF::adoptPtr(new ScriptResource(*m_resourceRequest.get(), "text/utf-8"));
+ }
+
+ void setResource()
+ {
+ m_resourceRequest = WTF::adoptPtr(new ResourceRequest(url()));
+ m_resource = WTF::adoptPtr(new ScriptResource(*m_resourceRequest.get(), "text/utf-8"));
+ }
+
+protected:
+ WTF::OwnPtr<ResourceRequest> m_resourceRequest;
+ WTF::OwnPtr<ScriptResource> m_resource;
+
+ static unsigned cacheTagParser;
+ static unsigned cacheTagCode;
+ static int counter;
+};
+
+unsigned V8ScriptRunnerTest::cacheTagParser = 0;
+unsigned V8ScriptRunnerTest::cacheTagCode = 0;
+int V8ScriptRunnerTest::counter = 0;
+
+TEST_F(V8ScriptRunnerTest, resourcelessShouldPass)
+{
+ EXPECT_TRUE(compileScript(V8CacheOptionsOff));
+ EXPECT_TRUE(compileScript(V8CacheOptionsParse));
+ EXPECT_TRUE(compileScript(V8CacheOptionsCode));
+}
+
+TEST_F(V8ScriptRunnerTest, emptyResourceDoesNothing)
+{
+ setEmptyResource();
+ EXPECT_TRUE(compileScript(V8CacheOptionsOff));
+ EXPECT_FALSE(m_resource->cachedMetadata(cacheTagParser));
+ EXPECT_FALSE(m_resource->cachedMetadata(cacheTagCode));
+
+ EXPECT_TRUE(compileScript(V8CacheOptionsParse));
+ EXPECT_FALSE(m_resource->cachedMetadata(cacheTagParser));
+ EXPECT_FALSE(m_resource->cachedMetadata(cacheTagCode));
+
+ EXPECT_TRUE(compileScript(V8CacheOptionsCode));
+ EXPECT_FALSE(m_resource->cachedMetadata(cacheTagParser));
+ EXPECT_FALSE(m_resource->cachedMetadata(cacheTagCode));
+}
+
+TEST_F(V8ScriptRunnerTest, defaultOptions)
+{
+ setResource();
+ EXPECT_TRUE(compileScript(V8CacheOptionsOff));
+ EXPECT_TRUE(m_resource->cachedMetadata(cacheTagParser));
+ EXPECT_FALSE(m_resource->cachedMetadata(cacheTagCode));
+}
+
+TEST_F(V8ScriptRunnerTest, parseOptions)
+{
+ setResource();
+ EXPECT_TRUE(compileScript(V8CacheOptionsParse));
+ EXPECT_TRUE(m_resource->cachedMetadata(cacheTagParser));
+ EXPECT_FALSE(m_resource->cachedMetadata(cacheTagCode));
+}
+
+TEST_F(V8ScriptRunnerTest, codeOptions)
+{
+ setResource();
+ EXPECT_TRUE(compileScript(V8CacheOptionsCode));
+ EXPECT_FALSE(m_resource->cachedMetadata(cacheTagParser));
+
+ // TODO(vogelheim): Code caching is presently still disabled.
+ // Enable EXPECT when code caching lands.
+ // EXPECT_TRUE(m_resource->cachedMetadata(cacheTagCode));
+}
+
+} // namespace
+
+} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698