blob: e04f89dc0b21493f4e8757f7fdb9f35df4d4ff43 [file] [log] [blame]
// Copyright (c) 2012 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.
#ifndef PPAPI_TESTS_TEST_FLASH_CLIPBOARD_H_
#define PPAPI_TESTS_TEST_FLASH_CLIPBOARD_H_
#include <string>
#include "ppapi/c/private/ppb_flash_clipboard.h"
#include "ppapi/tests/test_case.h"
#include "ppapi/tests/test_utils.h"
class TestFlashClipboard : public TestCase {
public:
explicit TestFlashClipboard(TestingInstance* instance);
// TestCase implementation.
virtual void RunTests(const std::string& filter);
private:
// Helpers.
bool ReadStringVar(PP_Flash_Clipboard_Format format, std::string* result);
bool WriteStringVar(PP_Flash_Clipboard_Format format,
const std::string& text);
bool IsFormatAvailableMatches(PP_Flash_Clipboard_Format format,
bool expected);
bool ReadPlainTextMatches(const std::string& expected);
bool ReadHTMLMatches(const std::string& expected);
// Tests.
std::string TestReadWritePlainText();
std::string TestReadWriteHTML();
std::string TestReadWriteRTF();
std::string TestReadWriteMultipleFormats();
std::string TestClear();
std::string TestInvalidFormat();
};
#endif // PAPPI_TESTS_TEST_FLASH_FULLSCREEN_H_