view API/Factories/Mock/FileSearchingWarFoundryFactory.cs @ 196:498396c77601

Re #380: WarFoundry chokes on zips written by Mac OS X * Add test to check that entries are found but skipped for loading * Add mock file that extends the standard XML factory to give us public access to protected methods
author IBBoard <dev@ibboard.co.uk>
date Sun, 04 Dec 2011 20:52:24 +0000
parents
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);
		}
	}
}