// Copyright (c) 2011 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 "ppapi/tests/test_case.h" #include #include "ppapi/tests/test_utils.h" #include "ppapi/tests/testing_instance.h" TestCase::TestCase(TestingInstance* instance) : instance_(instance), testing_interface_(NULL), force_async_(false) { } TestCase::~TestCase() { } bool TestCase::Init() { return true; } // static std::string TestCase::MakeFailureMessage(const char* file, int line, const char* cmd) { // The mere presence of this local variable works around a gcc-4.2.4 // compiler bug in official Chrome Linux builds. If you remove it, // confirm this compile command still works: // GYP_DEFINES='branding=Chrome buildtype=Official target_arch=x64' // gclient runhooks // make -k -j4 BUILDTYPE=Release ppapi_tests std::string s; std::ostringstream output; output << "Failure in " << file << "(" << line << "): " << cmd; return output.str(); } #if !(defined __native_client__) pp::VarPrivate TestCase::GetTestObject() { if (test_object_.is_undefined()) { pp::deprecated::ScriptableObject* so = CreateTestObject(); if (so) test_object_ = pp::VarPrivate(instance_, so); // Takes ownership. } return test_object_; } #endif void TestCase::HandleMessage(const pp::Var& message_data) { } void TestCase::DidChangeView(const pp::Rect& position, const pp::Rect& clip) { } bool TestCase::HandleInputEvent(const pp::InputEvent& event) { return false; } #if !(defined __native_client__) pp::deprecated::ScriptableObject* TestCase::CreateTestObject() { return NULL; } #endif bool TestCase::InitTestingInterface() { testing_interface_ = GetTestingInterface(); if (!testing_interface_) { // Give a more helpful error message for the testing interface being gone // since that needs special enabling in Chrome. instance_->AppendError("This test needs the testing interface, which is " "not currently available. In Chrome, use " "--enable-pepper-testing when launching."); return false; } return true; } bool TestCase::EnsureRunningOverHTTP() { if (instance_->protocol() != "http:") { instance_->AppendError("This test needs to be run over HTTP."); return false; } return true; } bool TestCase::MatchesFilter(const std::string& test_name, const std::string& filter) { return filter.empty() || (test_name == filter); }