summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/cxx/TestUniquePtrIPC.h
blob: 3c9de33df3513125b1937ff40b0eaebaf9609907 (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
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

#ifndef mozilla_TestUniquePtrIPC_h
#define mozilla_TestUniquePtrIPC_h

#include "mozilla/_ipdltest/IPDLUnitTests.h"

#include "mozilla/_ipdltest/PTestUniquePtrIPCParent.h"
#include "mozilla/_ipdltest/PTestUniquePtrIPCChild.h"

namespace mozilla {
namespace _ipdltest {

class TestUniquePtrIPCParent : public PTestUniquePtrIPCParent {
 public:
  MOZ_COUNTED_DEFAULT_CTOR(TestUniquePtrIPCParent)
  MOZ_COUNTED_DTOR_OVERRIDE(TestUniquePtrIPCParent)

  static bool RunTestInProcesses() { return true; }
  static bool RunTestInThreads() { return false; }

  void Main();

  bool ShouldContinueFromReplyTimeout() override { return false; }

  virtual void ActorDestroy(ActorDestroyReason why) override {
    if (NormalShutdown != why) {
      fail("Abnormal shutdown of parent");
    }
    passed("ok");
    QuitParent();
  }
};

class TestUniquePtrIPCChild : public PTestUniquePtrIPCChild {
 public:
  MOZ_COUNTED_DEFAULT_CTOR(TestUniquePtrIPCChild)
  MOZ_COUNTED_DTOR_OVERRIDE(TestUniquePtrIPCChild)

  mozilla::ipc::IPCResult RecvTestMessage(UniquePtr<int>&& aA1,
                                          UniquePtr<DummyStruct>&& aA2,
                                          const DummyStruct& aA3,
                                          UniquePtr<int>&& aA4);

  mozilla::ipc::IPCResult RecvTestSendReference(UniquePtr<DummyStruct>&& aA);

  virtual void ActorDestroy(ActorDestroyReason why) override {
    if (NormalShutdown != why) {
      fail("Abnormal shutdown of child");
    }
    QuitChild();
  }
};

}  // namespace _ipdltest
}  // namespace mozilla

#endif  // mozilla_TestUniquePtrIPC_h