view API/Factories/AbstractNativeWarFoundryFactoryTest.cs @ 167:03ccff4d5e8a

Re #94: Loading files is too slow * ACTUALLY fix the tests - Linux is somehow fast enough that it passes anyway, but Windows in VM failed
author IBBoard <dev@ibboard.co.uk>
date Wed, 07 Sep 2011 20:38:42 +0100
parents 6b9e86d4be95
children 6dce5122caca
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
			factory.CreateObjectsFromFile(new FileInfo("testdata/TextFileWithWrongExtension.race"));
		}
	}
}