// Copyright 2014 ISRG. All rights reserved // 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/. package analysisengine import ( "testing" "github.com/letsencrypt/boulder/Godeps/_workspace/src/github.com/streadway/amqp" ) func TestNewLoggingAnalysisEngine(t *testing.T) { ae := NewLoggingAnalysisEngine() // Trivially check an empty mock message d := &amqp.Delivery{} ae.ProcessMessage(*d) // Nothing to assert } type MockAck struct { // json.Marshall cannot represent a chan, so this will break // the json.Marshal attempt in ProcessMessage and let us get // coverage there. JSONBreaker chan bool } func (m *MockAck) Ack(tag uint64, multiple bool) error { return nil } func (m *MockAck) Nack(tag uint64, multiple bool, requeue bool) error { return nil } func (m *MockAck) Reject(tag uint64, requeue bool) error { return nil } func TestAnalysisEngineBadMessage(t *testing.T) { ae := NewLoggingAnalysisEngine() // Trivially check an empty mock message d := &amqp.Delivery{Acknowledger: &MockAck{}} ae.ProcessMessage(*d) // Nothing to assert }