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

com.github.tomakehurst.wiremock.standalone.JsonFileMappingsSource Maven / Gradle / Ivy

There is a newer version: 3.0.1
Show newest version
/*
 * Copyright (C) 2011 Thomas Akehurst
 *
 * 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.github.tomakehurst.wiremock.standalone;

import com.github.tomakehurst.wiremock.common.*;
import com.github.tomakehurst.wiremock.stubbing.StubMapping;
import com.github.tomakehurst.wiremock.stubbing.StubMappingCollection;
import com.github.tomakehurst.wiremock.stubbing.StubMappings;
import com.google.common.base.Predicate;
import com.google.common.collect.Iterables;

import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.UUID;

import static com.github.tomakehurst.wiremock.common.AbstractFileSource.byFileExtension;
import static com.github.tomakehurst.wiremock.common.Json.write;
import static com.github.tomakehurst.wiremock.common.Json.writePrivate;
import static com.google.common.collect.Iterables.any;
import static com.google.common.collect.Iterables.filter;

public class JsonFileMappingsSource implements MappingsSource {

	private final FileSource mappingsFileSource;
	private final Map fileNameMap;

	public JsonFileMappingsSource(FileSource mappingsFileSource) {
		this.mappingsFileSource = mappingsFileSource;
		fileNameMap = new HashMap<>();
	}

	@Override
	public void save(List stubMappings) {
		for (StubMapping mapping: stubMappings) {
			if (mapping != null && mapping.isDirty()) {
				save(mapping);
			}
		}
	}

	@Override
	public void save(StubMapping stubMapping) {
		StubMappingFileMetadata fileMetadata = fileNameMap.get(stubMapping.getId());
		if (fileMetadata == null) {
			fileMetadata = new StubMappingFileMetadata(SafeNames.makeSafeFileName(stubMapping), false);
		}

		if (fileMetadata.multi) {
			throw new NotWritableException("Stubs loaded from multi-mapping files are read-only, and therefore cannot be saved");
		}

		mappingsFileSource.writeTextFile(fileMetadata.path, writePrivate(stubMapping));

        fileNameMap.put(stubMapping.getId(), fileMetadata);
		stubMapping.setDirty(false);
	}

    @Override
    public void remove(StubMapping stubMapping) {
		StubMappingFileMetadata fileMetadata = fileNameMap.get(stubMapping.getId());
		if (fileMetadata.multi) {
			throw new NotWritableException("Stubs loaded from multi-mapping files are read-only, and therefore cannot be removed");
		}

		mappingsFileSource.deleteFile(fileMetadata.path);
        fileNameMap.remove(stubMapping.getId());
    }

	@Override
	public void removeAll() {
		if (anyFilesAreMultiMapping()) {
			throw new NotWritableException("Some stubs were loaded from multi-mapping files which are read-only, so remove all cannot be performed");
		}

		for (StubMappingFileMetadata fileMetadata: fileNameMap.values()) {
			mappingsFileSource.deleteFile(fileMetadata.path);
		}
		fileNameMap.clear();
	}

	private boolean anyFilesAreMultiMapping() {
		return any(fileNameMap.values(), new Predicate() {
			@Override
			public boolean apply(StubMappingFileMetadata input) {
				return input.multi;
			}
		});
	}

	@Override
	public void loadMappingsInto(StubMappings stubMappings) {
		if (!mappingsFileSource.exists()) {
			return;
		}

		Iterable mappingFiles = filter(mappingsFileSource.listFilesRecursively(), byFileExtension("json"));
		for (TextFile mappingFile: mappingFiles) {
			try {
				StubMappingCollection stubCollection = Json.read(mappingFile.readContentsAsString(), StubMappingCollection.class);
				for (StubMapping mapping: stubCollection.getMappingOrMappings()) {
					mapping.setDirty(false);
					stubMappings.addMapping(mapping);
					StubMappingFileMetadata fileMetadata = new StubMappingFileMetadata(mappingFile.getPath(), stubCollection.isMulti());
					fileNameMap.put(mapping.getId(), fileMetadata);
				}
			} catch (JsonException e) {
				throw new MappingFileException(mappingFile.getPath(), e.getErrors().first().getDetail());
			}
		}
	}

	private static class StubMappingFileMetadata {
		final String path;
		final boolean multi;

		public StubMappingFileMetadata(String path, boolean multi) {
			this.path = path;
			this.multi = multi;
		}
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy