blob: 9f9970e235fb52397e63588953cda7c30b1cc6e6 [file] [log] [blame]
/*
* Copyright (c) 2012, Niclas Hedhman. All Rights Reserved.
*
* Licensed 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.zest.library.alarm;
import org.junit.Test;
import org.apache.zest.api.injection.scope.Service;
import org.apache.zest.api.unitofwork.UnitOfWork;
import org.apache.zest.bootstrap.AssemblyException;
import org.apache.zest.bootstrap.ModuleAssembly;
import org.apache.zest.test.AbstractQi4jTest;
import org.apache.zest.test.EntityTestAssembler;
import static org.hamcrest.CoreMatchers.equalTo;
import static org.hamcrest.CoreMatchers.notNullValue;
import static org.junit.Assert.assertThat;
public class AlarmProxyTest extends AbstractQi4jTest
{
// START SNIPPET: documentation
@Service
private AlarmProxy.Factory factory;
private AlarmProxy myAlarmPoint;
// END SNIPPET: documentation
// START SNIPPET: documentation
@Override
public void assemble( ModuleAssembly module )
throws AssemblyException
{
new AlarmSystemAssembler().assemble( module );
// END SNIPPET: documentation
new EntityTestAssembler().assemble( module );
}
@Test
public void givenAlarmPointWhenActivateExpectActivationEvent()
throws Exception
{
UnitOfWork uow = module.newUnitOfWork();
try
{
// START SNIPPET: documentation
myAlarmPoint = factory.create( "This Alarm Identity", "ProActiveCRM", "Sales", AlarmClass.B );
myAlarmPoint.history().maxSize().set( 20 );
// END SNIPPET: documentation
// START SNIPPET: documentation
myAlarmPoint.activate();
// END SNIPPET: documentation
uow.complete();
assertThat( myAlarmPoint.history().activateCounter(), equalTo( 1 ) );
AlarmEvent event = myAlarmPoint.history().firstEvent();
assertThat( event, notNullValue() );
assertThat( event.alarmIdentity().get(), equalTo( "This Alarm Identity" ) );
assertThat( event.newStatus().get().name( null ), equalTo( "Activated" ) );
assertThat( event.oldStatus().get().name( null ), equalTo( "Normal" ) );
}
catch( Exception e )
{
uow.discard();
throw e;
}
}
}