blob: 4f00c6b588bfe6f39557c9bd2a11866d6bd28d85 [file] [log] [blame]
/*
* Copyright 1999-2012 Alibaba Group.
*
* 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 com.alibaba.dubbo.remoting.exchange.support.header;
import com.alibaba.dubbo.common.URL;
import com.alibaba.dubbo.remoting.Channel;
import com.alibaba.dubbo.remoting.ChannelHandler;
import com.alibaba.dubbo.remoting.RemotingException;
import java.net.InetSocketAddress;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* @author <a href="mailto:gang.lvg@alibaba-inc.com">kimi</a>
*/
public class MockChannel implements Channel {
private Map<String, Object> attributes = new HashMap<String, Object>();
private volatile boolean closed = false;
private List<Object> sentObjects = new ArrayList<Object>();
public InetSocketAddress getRemoteAddress() {
return null;
}
public boolean isConnected() {
return false;
}
public boolean hasAttribute(String key) {
return attributes.containsKey(key);
}
public Object getAttribute(String key) {
return attributes.get(key);
}
public void setAttribute(String key, Object value) {
attributes.put(key, value);
}
public void removeAttribute(String key) {
attributes.remove(key);
}
public URL getUrl() {
return null;
}
public ChannelHandler getChannelHandler() {
return null;
}
public InetSocketAddress getLocalAddress() {
return null;
}
public void send(Object message) throws RemotingException {
sentObjects.add(message);
}
public void send(Object message, boolean sent) throws RemotingException {
sentObjects.add(message);
}
public void close() {
closed = true;
}
public void close(int timeout) {
closed = true;
}
public boolean isClosed() {
return closed;
}
public List<Object> getSentObjects() {
return Collections.unmodifiableList(sentObjects);
}
}