| OLD | NEW |
| 1 // Copyright 2015 PDFium Authors. All rights reserved. | 1 // Copyright 2015 PDFium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "../../../core/include/fpdfapi/fpdf_parser.h" | 5 #include "../../../core/include/fpdfapi/fpdf_parser.h" |
| 6 #include "../../../testing/embedder_test.h" | 6 #include "../../../testing/embedder_test.h" |
| 7 #include "../../include/jsapi/fxjs_v8.h" | 7 #include "../../include/jsapi/fxjs_v8.h" |
| 8 #include "testing/gtest/include/gtest/gtest.h" | 8 #include "testing/gtest/include/gtest/gtest.h" |
| 9 #include "third_party/base/nonstd_unique_ptr.h" | 9 #include "third_party/base/nonstd_unique_ptr.h" |
| 10 | 10 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 | 25 |
| 26 ~FXJSV8Embeddertest() override { m_pIsolate->Dispose(); } | 26 ~FXJSV8Embeddertest() override { m_pIsolate->Dispose(); } |
| 27 | 27 |
| 28 void SetUp() override { | 28 void SetUp() override { |
| 29 EmbedderTest::SetExternalIsolate(m_pIsolate); | 29 EmbedderTest::SetExternalIsolate(m_pIsolate); |
| 30 EmbedderTest::SetUp(); | 30 EmbedderTest::SetUp(); |
| 31 | 31 |
| 32 v8::Isolate::Scope isolate_scope(m_pIsolate); | 32 v8::Isolate::Scope isolate_scope(m_pIsolate); |
| 33 v8::HandleScope handle_scope(m_pIsolate); | 33 v8::HandleScope handle_scope(m_pIsolate); |
| 34 FXJS_PerIsolateData::SetUp(m_pIsolate); | 34 FXJS_PerIsolateData::SetUp(m_pIsolate); |
| 35 FXJS_InitializeRuntime(m_pIsolate, nullptr, m_pPersistentContext); | 35 FXJS_InitializeRuntime(m_pIsolate, nullptr, &m_pPersistentContext, |
| 36 &m_StaticObjects); |
| 36 } | 37 } |
| 37 | 38 |
| 38 void TearDown() override { | 39 void TearDown() override { |
| 39 FXJS_ReleaseRuntime(m_pIsolate, m_pPersistentContext); | 40 FXJS_ReleaseRuntime(m_pIsolate, &m_pPersistentContext, &m_StaticObjects); |
| 40 m_pPersistentContext.Reset(); | 41 m_pPersistentContext.Reset(); |
| 41 FXJS_Release(); | 42 FXJS_Release(); |
| 42 EmbedderTest::TearDown(); | 43 EmbedderTest::TearDown(); |
| 43 } | 44 } |
| 44 | 45 |
| 45 v8::Isolate* isolate() { return m_pIsolate; } | 46 v8::Isolate* isolate() { return m_pIsolate; } |
| 46 v8::Local<v8::Context> GetV8Context() { | 47 v8::Local<v8::Context> GetV8Context() { |
| 47 return m_pPersistentContext.Get(m_pIsolate); | 48 return m_pPersistentContext.Get(m_pIsolate); |
| 48 } | 49 } |
| 49 | 50 |
| 50 private: | 51 private: |
| 51 nonstd::unique_ptr<FXJS_ArrayBufferAllocator> m_pArrayBufferAllocator; | 52 nonstd::unique_ptr<FXJS_ArrayBufferAllocator> m_pArrayBufferAllocator; |
| 52 v8::Isolate* m_pIsolate; | 53 v8::Isolate* m_pIsolate; |
| 53 v8::Global<v8::Context> m_pPersistentContext; | 54 v8::Global<v8::Context> m_pPersistentContext; |
| 55 std::vector<v8::Global<v8::Object>*> m_StaticObjects; |
| 54 }; | 56 }; |
| 55 | 57 |
| 56 TEST_F(FXJSV8Embeddertest, Getters) { | 58 TEST_F(FXJSV8Embeddertest, Getters) { |
| 57 v8::Isolate::Scope isolate_scope(isolate()); | 59 v8::Isolate::Scope isolate_scope(isolate()); |
| 58 v8::HandleScope handle_scope(isolate()); | 60 v8::HandleScope handle_scope(isolate()); |
| 59 v8::Context::Scope context_scope(GetV8Context()); | 61 v8::Context::Scope context_scope(GetV8Context()); |
| 60 | 62 |
| 61 FXJSErr error; | 63 FXJSErr error; |
| 62 CFX_WideString wsInfo; | 64 CFX_WideString wsInfo; |
| 63 CFX_WideString wsScript(kScript); | 65 CFX_WideString wsScript(kScript); |
| 64 int sts = FXJS_Execute(isolate(), nullptr, kScript, &error); | 66 int sts = FXJS_Execute(isolate(), nullptr, kScript, &error); |
| 65 EXPECT_EQ(0, sts); | 67 EXPECT_EQ(0, sts); |
| 66 | 68 |
| 67 v8::Local<v8::Object> This = FXJS_GetThisObj(isolate()); | 69 v8::Local<v8::Object> This = FXJS_GetThisObj(isolate()); |
| 68 v8::Local<v8::Value> fred = FXJS_GetObjectElement(isolate(), This, L"fred"); | 70 v8::Local<v8::Value> fred = FXJS_GetObjectElement(isolate(), This, L"fred"); |
| 69 EXPECT_TRUE(fred->IsNumber()); | 71 EXPECT_TRUE(fred->IsNumber()); |
| 70 } | 72 } |
| OLD | NEW |