summaryrefslogtreecommitdiff
path: root/qpid/java/systests/src/main/java/org/apache/qpid/server/AlertingTest.java
blob: 205a741b2ff834a1f58b5d8230d92b7f35d88e59 (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
/*
*
* 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.server;

import java.io.BufferedReader;
import java.io.File;
import java.io.FileOutputStream;
import java.io.FileReader;

import javax.jms.Connection;
import javax.jms.MessageConsumer;
import javax.jms.Queue;
import javax.jms.Session;

import org.apache.commons.configuration.XMLConfiguration;
import org.apache.log4j.FileAppender;
import org.apache.log4j.Logger;
import org.apache.log4j.SimpleLayout;
import org.apache.qpid.server.store.DerbyMessageStore;
import org.apache.qpid.test.utils.QpidTestCase;

public class AlertingTest extends QpidTestCase
{
    private String VIRTUALHOST = "test";
    private Session _session;
    private Connection _connection;
    private Queue _destination;
    private MessageConsumer _consumer; // Never read, but does need to be here to create the destination.
    private File _logfile;
    private XMLConfiguration _configuration;
    private int _numMessages;
    
    public void setUp() throws Exception
    {
        // First we munge the config file and, if we're in a VM, set up an additional logfile
        
        _configuration = new XMLConfiguration(_configFile); 
        _configuration.setProperty("management.enabled", "false");
        Class storeClass = DerbyMessageStore.class;
        Class bdb = null;
        try {
            bdb = Class.forName("org.apache.qpid.store.berkleydb.BDBMessageStore");
        }
        catch (ClassNotFoundException e)
        {
            // No BDB store, we'll use Derby instead. 
        }
        if (bdb != null)
        {
            storeClass = bdb;
        }
        
        _configuration.setProperty("virtualhosts.virtualhost." + VIRTUALHOST + ".store.class", storeClass.getName());
        _numMessages = 50;
        
        File tmpFile = File.createTempFile("configFile", "test");
        tmpFile.deleteOnExit();
        _configuration.save(tmpFile);
        _configFile = tmpFile;
        

        if (_outputFile != null)  
        {
            _logfile = _outputFile;
        } 
        else 
        {
            // This is mostly for running the test outside of the ant setup
            _logfile = File.createTempFile("logFile", "test"); 
            FileAppender appender = new FileAppender(new SimpleLayout(), _logfile.getAbsolutePath());
            appender.setFile(_logfile.getAbsolutePath());
            appender.setImmediateFlush(true);
            Logger.getRootLogger().addAppender(appender);
            //_logfile.deleteOnExit();
        }

        // Then we do the normal setup stuff like starting the broker, getting a connection etc.
        
        super.setUp();
        
        _connection = getConnection();
        _session = _connection.createSession(true, Session.AUTO_ACKNOWLEDGE);
        _destination = _session.createQueue("testQueue");
        
        // Consumer is only used to actually create the destination
        _consumer = _session.createConsumer(_destination);
    }

    /**
     * Checks the log file for MESSAGE_COUNT_ALERT, fails() the test if it's not found and
     * places the entire contents in the message to help debug cruise control failures.
     * @throws Exception
     */
    private void wasAlertFired() throws Exception
    {
        // Loop through alerts until we're done or 5 seconds have passed, 
        // just in case the logfile takes a while to flush. 
        BufferedReader reader = new BufferedReader(new FileReader(_logfile));
        boolean found = false;
        long endtime = System.currentTimeMillis()+5000; 
        while (!found && System.currentTimeMillis() < endtime)
        {
            while (reader.ready())
            {
                String line = reader.readLine();
                if (line.contains("MESSAGE_COUNT_ALERT"))
                {
                    found = true;
                }
            }
        }
        if (!found)
        {
            StringBuffer message = new StringBuffer("Could not find alert in log file: "+_logfile.getAbsolutePath());
            message.append("\n");
            reader = new BufferedReader(new FileReader(_logfile));
            for (int i = 0; i < 79; i++) { message.append("-"); };
            message.append("\n");
            while (reader.ready()) { message.append(reader.readLine() + "\n");}
            message.append("\n");
            for (int i = 0; i < 79; i++) { message.append("-"); };
            message.append("\n");
            fail(message.toString());
        }
    }
    
    public void testAlertingReallyWorks() throws Exception
    {
        // Send 5 messages, make sure that the alert was fired properly. 
        sendMessage(_session, _destination, _numMessages + 1);
        _session.commit();
        wasAlertFired();
    }

    public void testAlertingReallyWorksWithRestart() throws Exception
    {
        sendMessage(_session, _destination, _numMessages + 1);
        _session.commit();
        stopBroker();
        (new FileOutputStream(_logfile)).getChannel().truncate(0);
        startBroker();
        wasAlertFired();
    }
    
    public void testAlertingReallyWorksWithChanges() throws Exception
    {
        // send some messages and nuke the logs
        sendMessage(_session, _destination, 2);
        _session.commit();
        stopBroker();
        (new FileOutputStream(_logfile)).getChannel().truncate(0);
        
        // Change max message count to 5, start broker and make sure that that's triggered at the right time
        _configuration.setProperty("virtualhosts.virtualhost." + VIRTUALHOST + ".queues.maximumMessageCount", 5);
        startBroker();
        _connection = getConnection();
        _session = _connection.createSession(true, Session.AUTO_ACKNOWLEDGE);
        
        // Trigger the new value
        sendMessage(_session, _destination, 3);
        _session.commit();
        wasAlertFired();
    }
}