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
   70
   71
   72
   73
   74
   75
   76

fuchsia_web / common / test / frame_for_test.cc [blame]

// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "fuchsia_web/common/test/frame_for_test.h"

#include "base/fuchsia/fuchsia_logging.h"
#include "fuchsia_web/common/test/test_navigation_listener.h"
#include "testing/gtest/include/gtest/gtest.h"

// static
FrameForTest FrameForTest::Create(fuchsia::web::Context* context,
                                  fuchsia::web::CreateFrameParams params) {
  FrameForTest result;
  context->CreateFrameWithParams(std::move(params), result.frame_.NewRequest());
  result.CreateAndAttachNavigationListener({});
  result->SetJavaScriptLogLevel(fuchsia::web::ConsoleLogLevel::DEBUG);
  return result;
}

// static
FrameForTest FrameForTest::Create(fuchsia::web::FrameHost* frame_host,
                                  fuchsia::web::CreateFrameParams params) {
  FrameForTest result;
  frame_host->CreateFrameWithParams(std::move(params),
                                    result.frame_.NewRequest());
  result.CreateAndAttachNavigationListener({});
  result->SetJavaScriptLogLevel(fuchsia::web::ConsoleLogLevel::DEBUG);
  return result;
}

// static
FrameForTest FrameForTest::Create(const fuchsia::web::ContextPtr& context,
                                  fuchsia::web::CreateFrameParams params) {
  return Create(context.get(), std::move(params));
}

// static
FrameForTest FrameForTest::Create(const fuchsia::web::FrameHostPtr& frame_host,
                                  fuchsia::web::CreateFrameParams params) {
  return Create(frame_host.get(), std::move(params));
}

FrameForTest::FrameForTest() {
  // Fail tests by default, if any FrameForTest protocol disconnects.
  frame_.set_error_handler([](zx_status_t status) {
    ZX_LOG(ERROR, status) << "Frame disconnected.";
    ADD_FAILURE();
  });
}

FrameForTest::FrameForTest(FrameForTest&&) = default;

FrameForTest& FrameForTest::operator=(FrameForTest&&) = default;

FrameForTest::~FrameForTest() = default;

fuchsia::web::NavigationControllerPtr FrameForTest::GetNavigationController() {
  fuchsia::web::NavigationControllerPtr controller;
  frame_->GetNavigationController(controller.NewRequest());
  return controller;
}

void FrameForTest::CreateAndAttachNavigationListener(
    fuchsia::web::NavigationEventListenerFlags flags) {
  navigation_listener_ = std::make_unique<TestNavigationListener>();
  navigation_listener_binding_ =
      std::make_unique<fidl::Binding<fuchsia::web::NavigationEventListener>>(
          navigation_listener_.get());
  navigation_listener_binding_->set_error_handler([](zx_status_t status) {
    ZX_LOG(ERROR, status) << "NavigationEventListener disconnected.";
    ADD_FAILURE();
  });
  frame_->SetNavigationEventListener2(
      navigation_listener_binding_->NewBinding(), flags);
}