summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/cxx/TestShutdown.cpp
blob: 502695bd88cd68fd3ced10d79304230764fad39a (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
#include "TestShutdown.h"

namespace mozilla {
namespace _ipdltest {

//-----------------------------------------------------------------------------
// Parent side
void TestShutdownParent::Main() {
  if (!SendStart()) fail("sending Start()");
}

void TestShutdownParent::ActorDestroy(ActorDestroyReason why) {
  if (AbnormalShutdown != why) fail("should have ended test with crash!");

  passed("ok");

  QuitParent();
}

void TestShutdownSubParent::ActorDestroy(ActorDestroyReason why) {
  if (Manager()->ManagedPTestShutdownSubParent().Count() == 0)
    fail("manager should still have managees!");

  if (mExpectCrash && AbnormalShutdown != why)
    fail("expected crash!");
  else if (!mExpectCrash && AbnormalShutdown == why)
    fail("wasn't expecting crash!");

  if (mExpectCrash && 0 == ManagedPTestShutdownSubsubParent().Count())
    fail("expected to *still* have kids");
}

void TestShutdownSubsubParent::ActorDestroy(ActorDestroyReason why) {
  if (Manager()->ManagedPTestShutdownSubsubParent().Count() == 0)
    fail("manager should still have managees!");

  if (mExpectParentDeleted && AncestorDeletion != why)
    fail("expected ParentDeleted == why");
  else if (!mExpectParentDeleted && AncestorDeletion == why)
    fail("wasn't expecting parent delete");
}

//-----------------------------------------------------------------------------
// Child side

mozilla::ipc::IPCResult TestShutdownChild::RecvStart() {
  // test 1: alloc some actors and subactors, delete in
  // managee-before-manager order
  {
    bool expectCrash = false, expectParentDeleted = false;

    PTestShutdownSubChild* c1 = SendPTestShutdownSubConstructor(expectCrash);
    if (!c1) fail("problem sending ctor");

    PTestShutdownSubChild* c2 = SendPTestShutdownSubConstructor(expectCrash);
    if (!c2) fail("problem sending ctor");

    PTestShutdownSubsubChild* c1s1 =
        c1->SendPTestShutdownSubsubConstructor(expectParentDeleted);
    if (!c1s1) fail("problem sending ctor");
    PTestShutdownSubsubChild* c1s2 =
        c1->SendPTestShutdownSubsubConstructor(expectParentDeleted);
    if (!c1s2) fail("problem sending ctor");

    PTestShutdownSubsubChild* c2s1 =
        c2->SendPTestShutdownSubsubConstructor(expectParentDeleted);
    if (!c2s1) fail("problem sending ctor");
    PTestShutdownSubsubChild* c2s2 =
        c2->SendPTestShutdownSubsubConstructor(expectParentDeleted);
    if (!c2s2) fail("problem sending ctor");

    if (!PTestShutdownSubsubChild::Send__delete__(c1s1))
      fail("problem sending dtor");
    if (!PTestShutdownSubsubChild::Send__delete__(c1s2))
      fail("problem sending dtor");
    if (!PTestShutdownSubsubChild::Send__delete__(c2s1))
      fail("problem sending dtor");
    if (!PTestShutdownSubsubChild::Send__delete__(c2s2))
      fail("problem sending dtor");

    if (!c1->CallStackFrame()) fail("problem creating dummy stack frame");
    if (!c2->CallStackFrame()) fail("problem creating dummy stack frame");
  }

  // test 2: alloc some actors and subactors, delete managers first
  {
    bool expectCrash = false, expectParentDeleted = true;

    PTestShutdownSubChild* c1 = SendPTestShutdownSubConstructor(expectCrash);
    if (!c1) fail("problem sending ctor");

    PTestShutdownSubChild* c2 = SendPTestShutdownSubConstructor(expectCrash);
    if (!c2) fail("problem sending ctor");

    PTestShutdownSubsubChild* c1s1 =
        c1->SendPTestShutdownSubsubConstructor(expectParentDeleted);
    if (!c1s1) fail("problem sending ctor");
    PTestShutdownSubsubChild* c1s2 =
        c1->SendPTestShutdownSubsubConstructor(expectParentDeleted);
    if (!c1s2) fail("problem sending ctor");

    PTestShutdownSubsubChild* c2s1 =
        c2->SendPTestShutdownSubsubConstructor(expectParentDeleted);
    if (!c2s1) fail("problem sending ctor");
    PTestShutdownSubsubChild* c2s2 =
        c2->SendPTestShutdownSubsubConstructor(expectParentDeleted);
    if (!c2s2) fail("problem sending ctor");

    // delete parents without deleting kids
    if (!c1->CallStackFrame()) fail("problem creating dummy stack frame");
    if (!c2->CallStackFrame()) fail("problem creating dummy stack frame");
  }

  // test 3: alloc some actors and subactors, then crash
  {
    bool expectCrash = true, expectParentDeleted = false;

    PTestShutdownSubChild* c1 = SendPTestShutdownSubConstructor(expectCrash);
    if (!c1) fail("problem sending ctor");

    PTestShutdownSubChild* c2 = SendPTestShutdownSubConstructor(expectCrash);
    if (!c2) fail("problem sending ctor");

    PTestShutdownSubsubChild* c1s1 =
        c1->SendPTestShutdownSubsubConstructor(expectParentDeleted);
    if (!c1s1) fail("problem sending ctor");
    PTestShutdownSubsubChild* c1s2 =
        c1->SendPTestShutdownSubsubConstructor(expectParentDeleted);
    if (!c1s2) fail("problem sending ctor");

    PTestShutdownSubsubChild* c2s1 =
        c2->SendPTestShutdownSubsubConstructor(expectParentDeleted);
    if (!c2s1) fail("problem sending ctor");
    PTestShutdownSubsubChild* c2s2 =
        c2->SendPTestShutdownSubsubConstructor(expectParentDeleted);
    if (!c2s2) fail("problem sending ctor");

    // make sure the ctors have been processed by the other side;
    // the write end of the socket may temporarily be unwriteable
    if (!SendSync()) fail("can't synchronize with parent");

    // "crash", but without tripping tinderbox assert/abort
    // detectors
    _exit(0);
  }
}

void TestShutdownChild::ActorDestroy(ActorDestroyReason why) {
  fail("hey wait ... we should have crashed!");
}

mozilla::ipc::IPCResult TestShutdownSubChild::AnswerStackFrame() {
  if (!PTestShutdownSubChild::Send__delete__(this))
    fail("problem sending dtor");

  // WATCH OUT!  |this| has just deleted

  return IPC_OK();
}

void TestShutdownSubChild::ActorDestroy(ActorDestroyReason why) {
  if (Manager()->ManagedPTestShutdownSubChild().Count() == 0)
    fail("manager should still have managees!");

  if (mExpectCrash && AbnormalShutdown != why)
    fail("expected crash!");
  else if (!mExpectCrash && AbnormalShutdown == why)
    fail("wasn't expecting crash!");

  if (mExpectCrash && 0 == ManagedPTestShutdownSubsubChild().Count())
    fail("expected to *still* have kids");
}

void TestShutdownSubsubChild::ActorDestroy(ActorDestroyReason why) {
  if (Manager()->ManagedPTestShutdownSubsubChild().Count() == 0)
    fail("manager should still have managees!");

  if (mExpectParentDeleted && AncestorDeletion != why)
    fail("expected ParentDeleted == why");
  else if (!mExpectParentDeleted && AncestorDeletion == why)
    fail("wasn't expecting parent delete");
}

}  // namespace _ipdltest
}  // namespace mozilla