You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
1.5 KiB

require('./harness').run();
var testName = __filename.replace(__dirname+'/','').replace('.js','');
connection.addListener('ready', function () {
puts("connected to " + connection.serverProperties.product);
connection.exchange('node.'+testName+'.exchange', {type: 'topic'}, function(exchange) {
connection.queue( 'node.'+testName+'.queue', { durable: false, autoDelete : true }, function (queue) {
puts("Queue ready");
// main test for sequential callback issue
queue.bind( exchange, 'node.'+testName+'.topic.bindCallback1', function() {
puts("bind callback called");
assert.ok(false, "This callback should not be called unless the sequential bind callback issue has been fixed");}
);
queue.bind( exchange, 'node.'+testName+'.topic.bindCallback2', function() {
puts("bind callback called");
assert.ok(false, "This callback should not be called unless the sequential bind callback issue has been fixed");}
);
queue.bind( exchange, 'node.'+testName+'.topic.bindCallback2', function() {
puts("bind callback called");
assert.ok(true, "This callback should have be called, as the last of the sequential callbacks");}
);
setTimeout(function() {
queue.destroy();
connection.destroy();
}, 2000);
});
});
});