view API/Factories/Mock/FileSearchingWarFoundryFactory.cs @ 212:325943cb1db0

Re #379: Fix validation of requirements to check for unit * Create common base class for requirement testing with helper methods * Rework unit adding tests in UnitRequiresNoMoreThanNOfUnitTypeRequirementTest to new structure
author IBBoard <dev@ibboard.co.uk>
date Sun, 26 Feb 2012 15:20:48 +0000
parents 498396c77601
children
line wrap: on
line source

// This file (FileSearchingWarFoundryFactory.cs) is a part of the IBBoard.WarFoundry.API.Tests project and is copyright 2011 IBBoard
// 
// The file and the library/program it is in are licensed and distributed, without warranty, under the GNU Affero GPL license, either version 3 of the License or (at your option) any later version. Please see COPYING for more information and the full license.
using System;
using System.Collections.Generic;
using ICSharpCode.SharpZipLib.Zip;
using IBBoard.WarFoundry.API.Factories.Xml;
using System.IO;
using IBBoard.WarFoundry.API.Objects;

namespace IBBoard.WarFoundry.API.Factories.Mock
{
	public class FileSearchingWarFoundryFactory : WarFoundryXmlFactory
	{
		public FileSearchingWarFoundryFactory()
		{
			//Do nothing special
		}

		public ICollection<ZipEntry> GetGameSystemZipEntries(FileInfo file)
		{
			ZipFile zip = new ZipFile(file.FullName);
			return GetGameSystemZipEntries(zip);
		}

		public ICollection<ZipEntry> GetRaceZipEntries(FileInfo file)
		{
			ZipFile zip = new ZipFile(file.FullName);
			return GetRaceZipEntries(zip);
		}

		public ICollection<ZipEntry> GetArmyZipEntries(FileInfo file)
		{
			ZipFile zip = new ZipFile(file.FullName);
			return GetArmyZipEntries(zip);
		}
	}
}