summaryrefslogtreecommitdiff
path: root/testing/xfa_js_embedder_test.cpp
blob: d72e8762e8e4b15e4e272572249fff5cac5a039c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
// Copyright 2017 PDFium 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 "testing/xfa_js_embedder_test.h"

#include <string>

#include "fpdfsdk/fpdfxfa/cpdfxfa_context.h"
#include "fpdfsdk/fsdk_define.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "third_party/base/ptr_util.h"
#include "xfa/fxfa/parser/cxfa_scriptcontext.h"

XFAJSEmbedderTest::XFAJSEmbedderTest()
    : array_buffer_allocator_(pdfium::MakeUnique<FXJS_ArrayBufferAllocator>()) {
}

XFAJSEmbedderTest::~XFAJSEmbedderTest() {}

void XFAJSEmbedderTest::SetUp() {
  v8::Isolate::CreateParams params;
  params.array_buffer_allocator = array_buffer_allocator_.get();
  isolate_ = v8::Isolate::New(params);
  ASSERT_TRUE(isolate_ != nullptr);

  EmbedderTest::SetExternalIsolate(isolate_);
  EmbedderTest::SetUp();
}

void XFAJSEmbedderTest::TearDown() {
  value_ = nullptr;
  script_context_ = nullptr;

  EmbedderTest::TearDown();

  isolate_->Dispose();
  isolate_ = nullptr;
}

bool XFAJSEmbedderTest::OpenDocument(const std::string& filename,
                                     const char* password,
                                     bool must_linearize) {
  if (!EmbedderTest::OpenDocument(filename, password, must_linearize))
    return false;

  script_context_ = UnderlyingFromFPDFDocument(document())
                        ->GetXFADoc()
                        ->GetXFADoc()
                        ->GetScriptContext();
  return true;
}

bool XFAJSEmbedderTest::Execute(const CFX_ByteStringC& input) {
  value_ = pdfium::MakeUnique<CFXJSE_Value>(GetIsolate());
  if (script_context_->RunScript(XFA_SCRIPTLANGTYPE_Formcalc,
                                 CFX_WideString::FromUTF8(input).AsStringC(),
                                 value_.get(), nullptr)) {
    return true;
  }

  CFXJSE_Value msg(GetIsolate());
  value_->GetObjectPropertyByIdx(1, &msg);
  EXPECT_TRUE(msg.IsString());

  fprintf(stderr, "JS: %.*s\n", input.GetLength(), input.c_str());
  fprintf(stderr, "JS ERROR: %ls\n", msg.ToWideString().c_str());
  return false;
}