blob: 8e1cd301b0c6b95715206b033a8e3ccc553c092b [file] [log] [blame]
/*
* 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.protonj2.test.driver.expectations;
import static org.hamcrest.CoreMatchers.equalTo;
import java.util.Map;
import org.apache.qpid.protonj2.test.driver.AMQPTestDriver;
import org.apache.qpid.protonj2.test.driver.actions.BeginInjectAction;
import org.apache.qpid.protonj2.test.driver.actions.CloseInjectAction;
import org.apache.qpid.protonj2.test.driver.codec.ListDescribedType;
import org.apache.qpid.protonj2.test.driver.codec.primitives.Symbol;
import org.apache.qpid.protonj2.test.driver.codec.transport.Close;
import org.apache.qpid.protonj2.test.driver.codec.transport.ErrorCondition;
import org.apache.qpid.protonj2.test.driver.codec.util.TypeMapper;
import org.apache.qpid.protonj2.test.driver.matchers.transport.CloseMatcher;
import org.hamcrest.Matcher;
import io.netty.buffer.ByteBuf;
/**
* Scripted expectation for the AMQP Close performative
*/
public class CloseExpectation extends AbstractExpectation<Close> {
private final CloseMatcher matcher = new CloseMatcher();
private CloseInjectAction response;
public CloseExpectation(AMQPTestDriver driver) {
super(driver);
}
public CloseInjectAction respond() {
response = new CloseInjectAction(driver);
driver.addScriptedElement(response);
return response;
}
//----- Handle the performative and configure response is told to respond
@Override
public void handleClose(int frameSize, Close close, ByteBuf payload, int channel, AMQPTestDriver context) {
super.handleClose(frameSize, close, payload, channel, context);
if (response == null) {
return;
}
// Input was validated now populate response with auto values where not configured
// to say otherwise by the test.
if (response.onChannel() == BeginInjectAction.CHANNEL_UNSET) {
response.onChannel(channel);
}
}
//----- Type specific with methods that perform simple equals checks
public CloseExpectation withError(ErrorCondition error) {
return withError(equalTo(error));
}
public CloseExpectation withError(String condition, String description) {
return withError(equalTo(new ErrorCondition(Symbol.valueOf(condition), description)));
}
public CloseExpectation withError(String condition, String description, Map<String, Object> info) {
return withError(equalTo(new ErrorCondition(Symbol.valueOf(condition), description, TypeMapper.toSymbolKeyedMap(info))));
}
public CloseExpectation withError(Symbol condition, String description) {
return withError(equalTo(new ErrorCondition(condition, description)));
}
public CloseExpectation withError(Symbol condition, String description, Map<Symbol, Object> info) {
return withError(equalTo(new ErrorCondition(condition, description, info)));
}
//----- Matcher based with methods for more complex validation
public CloseExpectation withError(Matcher<?> m) {
matcher.addFieldMatcher(Close.Field.ERROR, m);
return this;
}
@Override
protected Matcher<ListDescribedType> getExpectationMatcher() {
return matcher;
}
@Override
protected Class<Close> getExpectedTypeClass() {
return Close.class;
}
}