summaryrefslogtreecommitdiff
path: root/java/perftests/src/test/java/org/apache/qpid/disttest/client/ParticipantExecutorTest.java
blob: 6720047cd1e40e307a0b7869fb92f1d3c79b4ddf (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
186
187
188
189
190
191
192
193
194
195
196
197
198
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */

package org.apache.qpid.disttest.client;

import static org.mockito.Matchers.argThat;
import static org.mockito.Mockito.doThrow;
import static org.mockito.Mockito.inOrder;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;

import java.util.concurrent.CountDownLatch;
import java.util.concurrent.Executor;
import java.util.concurrent.TimeUnit;

import org.apache.qpid.disttest.DistributedTestException;
import org.apache.qpid.disttest.message.ParticipantResult;
import org.apache.qpid.test.utils.QpidTestCase;
import org.mockito.ArgumentMatcher;
import org.mockito.InOrder;

public class ParticipantExecutorTest extends QpidTestCase
{
    private static final ResultHasError HAS_ERROR = new ResultHasError();
    private static final String CLIENT_NAME = "CLIENT_NAME";
    private static final String PARTICIPANT_NAME = "PARTICIPANT_NAME";
    private ParticipantExecutor _participantExecutor = null;
    private Client _client = null;
    private Participant _participant = null;
    private ParticipantResult _mockResult;

    @Override
    protected void setUp() throws Exception
    {
        super.setUp();

        _client = mock(Client.class);
        when(_client.getClientName()).thenReturn(CLIENT_NAME);
        _participant = mock(Participant.class);

        _participantExecutor = new ParticipantExecutor(_participant);
        _participantExecutor.setExecutor(new SynchronousExecutor());

        _mockResult = mock(ParticipantResult.class);
    }

    public void testStart() throws Exception
    {
        when(_participant.doIt(CLIENT_NAME)).thenReturn(_mockResult);

        _participantExecutor.start(_client);

        InOrder inOrder = inOrder(_participant, _client);

        inOrder.verify(_participant).doIt(CLIENT_NAME);
        inOrder.verify(_participant).releaseResources();
        inOrder.verify(_client).sendResults(_mockResult);
    }

    public void testParticipantThrowsException() throws Exception
    {
        when(_participant.doIt(CLIENT_NAME)).thenThrow(DistributedTestException.class);

        _participantExecutor.start(_client);

        InOrder inOrder = inOrder(_participant, _client);

        inOrder.verify(_participant).doIt(CLIENT_NAME);
        inOrder.verify(_participant).releaseResources();
        inOrder.verify(_client).sendResults(argThat(HAS_ERROR));
    }

    public void testReleaseResourcesThrowsException() throws Exception
    {
        when(_participant.doIt(CLIENT_NAME)).thenReturn(_mockResult);
        doThrow(DistributedTestException.class).when(_participant).releaseResources();

        _participantExecutor.start(_client);

        InOrder inOrder = inOrder(_participant, _client);

        inOrder.verify(_participant).doIt(CLIENT_NAME);
        inOrder.verify(_participant).releaseResources();

        // check that sendResults is called even though releaseResources threw an exception
        inOrder.verify(_client).sendResults(_mockResult);
    }

    public void testThreadNameAndDaemonness() throws Exception
    {
        ThreadPropertyReportingParticipant participant = new ThreadPropertyReportingParticipant(PARTICIPANT_NAME);
        _participantExecutor = new ParticipantExecutor(participant);

        _participantExecutor.start(_client);
        participant.awaitExecution();

        assertTrue("Participant should be run in a thread named after it", participant.threadWasCalled().endsWith(PARTICIPANT_NAME));
        assertTrue("Executor should use daemon threads to avoid them preventing JVM termination", participant.wasDaemon());
    }

    private static final class ThreadPropertyReportingParticipant implements Participant
    {
        private final String _participantName;
        private final CountDownLatch _participantExecuted = new CountDownLatch(1);
        private String _threadName;
        private boolean _daemon;

        public ThreadPropertyReportingParticipant(String participantName)
        {
            _participantName = participantName;
        }

        public String threadWasCalled()
        {
            return _threadName;
        }

        public boolean wasDaemon()
        {
            return _daemon;
        }

        @Override
        public void releaseResources()
        {
        }

        @Override
        public String getName()
        {
            return _participantName;
        }

        @Override
        public ParticipantResult doIt(String registeredClientName) throws Exception
        {
            Thread currentThread = Thread.currentThread();
            _threadName = currentThread.getName();
            _daemon = currentThread.isDaemon();

            _participantExecuted.countDown();

            return null; // unused
        }

        public void awaitExecution()
        {
            boolean success = false;
            try
            {
                success = _participantExecuted.await(5, TimeUnit.SECONDS);
            }
            catch (InterruptedException e)
            {
                Thread.currentThread().interrupt();
            }

            assertTrue("Participant not executed", success);
        }
    }

    /** avoids our unit test needing to use multiple threads */
    private final class SynchronousExecutor implements Executor
    {
        @Override
        public void execute(Runnable command)
        {
            command.run();
        }
    }

    private static class ResultHasError extends ArgumentMatcher<ParticipantResult>
    {
        @Override
        public boolean matches(Object argument)
        {
            ParticipantResult result = (ParticipantResult) argument;
            return result.hasError();
        }
    }

}