All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.javacrumbs.mocksocket.connection.StaticConnectionFactory Maven / Gradle / Ivy

There is a newer version: 0.9.0
Show newest version
/**
 * Copyright 2009-2011 the original author or authors.
 *
 * 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 net.javacrumbs.mocksocket.connection;

import java.io.IOException;
import java.net.Socket;
import java.util.HashMap;
import java.util.Map;

import net.javacrumbs.mocksocket.MockSocketImplFactory;

/**
 * Stores connections in a static field.
 * @author Lukas Krecan
 *
 */
public class StaticConnectionFactory implements ConnectionFactory {
	private static final Map expectedConnections = new HashMap();
	
	public static void bootstrap()
	{
		try {
			Socket.setSocketImplFactory(new MockSocketImplFactory(new ConnectionFactoryMockSocketImpl(new StaticConnectionFactory())));
		} catch (IOException e) {
			throw new IllegalStateException("Can not bootstrap the connection factory",e);
		}
	}
	
	public synchronized Connection createConnection(String address) {
		UniversalMockConnection connection = expectedConnections.get(address);
		if (connection==null)
		{
			throw new IllegalStateException("Connection to address \""+address+"\" not expected.");
		}
		connection.onCreate();
		return connection;
	}

	public synchronized static UniversalMockRecorder expectCallTo(String address) {
		UniversalMockConnection mockConnection = new UniversalMockConnection(address);
		if (connection(address)==null)
		{
			expectedConnections.put(address, mockConnection);
		}
		else
		{
			throw new IllegalArgumentException("Can not call expect twice with the same address. You have to call reset before each test. If you need simulate multiple requests to the same address, please call andReturn several times.");
		}
		return mockConnection;
	}
	
	public synchronized static void reset()
	{
		expectedConnections.clear();
	}

	public synchronized static MockConnection connection(String address) {
		return expectedConnections.get(address);
	}



}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy