summaryrefslogtreecommitdiffstats
path: root/ppapi/tests/test_message_handler.h
blob: 51d231741c0d877dcf3cd1b4a7702564c268c3fc (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
// Copyright 2014 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_MESSAGE_HANDLER_H_
#define PPAPI_TESTS_TEST_MESSAGE_HANDLER_H_

#include <string>
#include <vector>

#include "ppapi/c/ppb_messaging.h"
#include "ppapi/tests/test_case.h"
#include "ppapi/tests/test_utils.h"
#include "ppapi/utility/threading/simple_thread.h"

class TestMessageHandler : public TestCase {
 public:
  explicit TestMessageHandler(TestingInstance* instance);
  virtual ~TestMessageHandler();

 private:
  // TestCase implementation.
  virtual bool Init();
  virtual void RunTests(const std::string& filter);
  virtual void HandleMessage(const pp::Var& message_data);

  std::string TestRegisterErrorConditions();
  std::string TestPostMessageAndAwaitResponse();
  std::string TestExceptions();

  // Wait for HandleMessage to be called, and return the Var it received.
  pp::Var WaitForMessage();
  NestedEvent message_received_;
  pp::Var last_message_;

  const PPB_Messaging_1_2* ppb_messaging_if_;
  pp::SimpleThread handler_thread_;

};

#endif  // PPAPI_TESTS_TEST_MESSAGE_HANDLER_H_