view API/Factories/AbstractNativeWarFoundryFactoryTest.cs @ 176:9a1763af5fd2

Re #338: WarFoundry.API - Save System Data * Add tests for saving point names * Add expected values for new tests * Add points names to existing expected values (because we don't know if they were default or not)
author IBBoard <dev@ibboard.co.uk>
date Wed, 26 Oct 2011 15:40:52 +0100
parents 6dce5122caca
children 498396c77601
line wrap: on
line source

// This file (AbstractNativeWarFoundryFactoryTest.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 NUnit.Framework;
using IBBoard.WarFoundry.API.Factories.Mock;
using System.Diagnostics;
using NUnit.Framework.SyntaxHelpers;
using System.IO;

namespace IBBoard.WarFoundry.API.Factories
{
	[TestFixture]
	public class AbstractNativeWarFoundryFactoryTest
	{
		[Test]
		public void Bug94TestLoadingTimesForNonZipFiles()
		{
			MockNativeWarFoundryFactory factory = new MockNativeWarFoundryFactory();
			Stopwatch sw = Stopwatch.StartNew();
			factory.CreateObjectsFromFile(new FileInfo("testdata/Test.race"));
			sw.Stop();
			long successElapsed = sw.ElapsedMilliseconds;
			sw.Reset();
			sw.Start();
			factory.CreateObjectsFromFile(new FileInfo("testdata/NotARaceFile.txt"));
			sw.Stop();
			long failedElapsed = sw.ElapsedMilliseconds;
			long timeRatio = failedElapsed / successElapsed;
			Assert.That(timeRatio, Is.LessThan(10));
		}

		[Test]
		public void Bug358TestLoadingOfFailedFiles()
		{
			MockNativeWarFoundryFactory factory = new MockNativeWarFoundryFactory();
			//This will also be triggered by Bug94TestLoadingTimesForNonZipFiles, but this makes it separate and explicit
			FileInfo nonRaceFile = new FileInfo("testdata/NotARaceFile.txt");
			Assert.That(nonRaceFile.Exists, Is.True);
			Assert.That(factory.CanHandleFileFormat(nonRaceFile), Is.False);
		}
	}
}