123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312 |
- using System;
- using System.IO;
- using System.Reflection;
- using Microsoft.VisualStudio.TestTools.UnitTesting;
- using TestStack.White;
- using TestStack.White.UIItems;
- using TestStack.White.UIItems.WindowItems;
- using TestStack.White.UIItems.Finders;
- using System.Threading;
- using SketchAssistantWPF;
- using System.Windows;
- using System.Diagnostics;
- using TestStack.White.UIItems.WindowStripControls;
- using TestStack.White.UIItems.MenuItems;
- using System.Collections.Generic;
- namespace WhiteTests
- {
- [TestClass]
- public class UITest
- {
- private TestStack.White.Application application;
- public Window setupapp()
- {
- string outputDir = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
- string editedDir = outputDir.Replace("WhiteTests", "SketchAssistantWPF");
- string app_path = editedDir + @"\SketchAssistantWPF.exe";
- ProcessStartInfo processStart = new ProcessStartInfo(app_path, "-debug");
- application = Application.Launch(processStart);
- return application.GetWindow("Sketch Assistant");
- }
- [TestMethod]
- public void CreateCanvasTest()
- {
- Window mainWindow = setupapp();
- Thread.Sleep(20);
- Assert.AreEqual("none", mainWindow.Get<TextBox>(SearchCriteria.ByAutomationId("LastActionBox")).Text.ToString());
- mainWindow.Get<Button>(SearchCriteria.ByAutomationId("CanvasButton")).Click();
- Thread.Sleep(20);
- Assert.AreEqual("Last Action: A new canvas was created.", mainWindow.Get<TextBox>(SearchCriteria.ByAutomationId("LastActionBox")).Text.ToString());
- mainWindow.Close();
- }
- [TestMethod]
- public void DrawLineTest()
- {
- Window mainWindow = setupapp();
- Thread.Sleep(20);
- Assert.AreEqual("none", mainWindow.Get<TextBox>(SearchCriteria.ByAutomationId("LastActionBox")).Text.ToString());
- mainWindow.Get<Button>(SearchCriteria.ByAutomationId("CanvasButton")).Click();
- Thread.Sleep(20);
- Assert.AreEqual("Last Action: A new canvas was created.", mainWindow.Get<TextBox>(SearchCriteria.ByAutomationId("LastActionBox")).Text.ToString());
- mainWindow.Get<Menu>(SearchCriteria.ByAutomationId("EditMenuButton")).Click();
- Thread.Sleep(20);
- mainWindow.Get<Menu>(SearchCriteria.ByAutomationId("DebugMode")).Click();
- Thread.Sleep(20);
- mainWindow.Get<Menu>(SearchCriteria.ByAutomationId("DebugOne")).Click();
- Thread.Sleep(7000);
- Assert.AreEqual("Last Action: Line number 0 was drawn.", mainWindow.Get<TextBox>(SearchCriteria.ByAutomationId("LastActionBox")).Text.ToString());
- mainWindow.Close();
- }
- /*[TestMethod]
- public void DeleteLineTest()
- {
- Window mainWindow = setupapp();
- Thread.Sleep(20);
- Assert.AreEqual("none", mainWindow.Get<TextBox>(SearchCriteria.ByAutomationId("LastActionBox")).Text.ToString());
- mainWindow.Get<Button>(SearchCriteria.ByAutomationId("CanvasButton")).Click();
- Thread.Sleep(20);
- Assert.AreEqual("Last Action: A new canvas was created.", mainWindow.Get<TextBox>(SearchCriteria.ByAutomationId("LastActionBox")).Text.ToString());
- mainWindow.Get<Menu>(SearchCriteria.ByAutomationId("EditMenuButton")).Click();
- Thread.Sleep(20);
- mainWindow.Get<Menu>(SearchCriteria.ByAutomationId("DebugMode")).Click();
- Thread.Sleep(20);
- mainWindow.Get<Menu>(SearchCriteria.ByAutomationId("DebugOne")).Click();
- Thread.Sleep(7000);
- Assert.AreEqual("Last Action: Line number 0 was drawn.", mainWindow.Get<TextBox>(SearchCriteria.ByAutomationId("LastActionBox")).Text.ToString());
- Thread.Sleep(20);
- mainWindow.Get<Button>(SearchCriteria.ByAutomationId("DeleteButton")).Click();
- Thread.Sleep(20);
- mainWindow.Get<Menu>(SearchCriteria.ByAutomationId("EditMenuButton")).Click();
- Thread.Sleep(20);
- mainWindow.Get<Menu>(SearchCriteria.ByAutomationId("DebugMode")).Click();
- Thread.Sleep(20);
- mainWindow.Get<Menu>(SearchCriteria.ByAutomationId("DebugThree")).Click();
- Thread.Sleep(24000);
- Assert.AreEqual("Last Action: Line number 0 was deleted", mainWindow.Get<TextBox>(SearchCriteria.ByAutomationId("LastActionBox")).Text.ToString());
- mainWindow.Close();
- }*/
- [TestMethod]
- public void UndoTest()
- {
- Window mainWindow = setupapp();
- Thread.Sleep(20);
- Assert.AreEqual("none", mainWindow.Get<TextBox>(SearchCriteria.ByAutomationId("LastActionBox")).Text.ToString());
- mainWindow.Get<Button>(SearchCriteria.ByAutomationId("CanvasButton")).Click();
- Thread.Sleep(20);
- Assert.AreEqual("Last Action: A new canvas was created.", mainWindow.Get<TextBox>(SearchCriteria.ByAutomationId("LastActionBox")).Text.ToString());
- mainWindow.Get<Menu>(SearchCriteria.ByAutomationId("EditMenuButton")).Click();
- Thread.Sleep(20);
- mainWindow.Get<Menu>(SearchCriteria.ByAutomationId("DebugMode")).Click();
- Thread.Sleep(20);
- mainWindow.Get<Menu>(SearchCriteria.ByAutomationId("DebugOne")).Click();
- Thread.Sleep(7000);
- Assert.AreEqual("Last Action: Line number 0 was drawn.", mainWindow.Get<TextBox>(SearchCriteria.ByAutomationId("LastActionBox")).Text.ToString());
- Thread.Sleep(20);
- mainWindow.Get<Button>(SearchCriteria.ByAutomationId("UndoButton")).Click();
- Thread.Sleep(20);
- Assert.AreEqual("Last Action: A new canvas was created.", mainWindow.Get<TextBox>(SearchCriteria.ByAutomationId("LastActionBox")).Text.ToString());
- mainWindow.Close();
- }
- [TestMethod]
- public void RedoTest()
- {
- Window mainWindow = setupapp();
- Thread.Sleep(20);
- Assert.AreEqual("none", mainWindow.Get<TextBox>(SearchCriteria.ByAutomationId("LastActionBox")).Text.ToString());
- mainWindow.Get<Button>(SearchCriteria.ByAutomationId("CanvasButton")).Click();
- Thread.Sleep(20);
- Assert.AreEqual("Last Action: A new canvas was created.", mainWindow.Get<TextBox>(SearchCriteria.ByAutomationId("LastActionBox")).Text.ToString());
- mainWindow.Get<Menu>(SearchCriteria.ByAutomationId("EditMenuButton")).Click();
- Thread.Sleep(20);
- mainWindow.Get<Menu>(SearchCriteria.ByAutomationId("DebugMode")).Click();
- Thread.Sleep(20);
- mainWindow.Get<Menu>(SearchCriteria.ByAutomationId("DebugOne")).Click();
- Thread.Sleep(7000);
- Assert.AreEqual("Last Action: Line number 0 was drawn.", mainWindow.Get<TextBox>(SearchCriteria.ByAutomationId("LastActionBox")).Text.ToString());
- Thread.Sleep(20);
- mainWindow.Get<Button>(SearchCriteria.ByAutomationId("UndoButton")).Click();
- Thread.Sleep(20);
- Assert.AreEqual("Last Action: A new canvas was created.", mainWindow.Get<TextBox>(SearchCriteria.ByAutomationId("LastActionBox")).Text.ToString());
- Thread.Sleep(20);
- mainWindow.Get<Button>(SearchCriteria.ByAutomationId("RedoButton")).Click();
- Thread.Sleep(20);
- Assert.AreEqual("Last Action: Line number 0 was drawn.", mainWindow.Get<TextBox>(SearchCriteria.ByAutomationId("LastActionBox")).Text.ToString());
- mainWindow.Close();
- }
- }
- [TestClass]
- [DeploymentItem(@"WhiteTests\test_input_files\")]
- public class FileImporterTests
- {
- /// <summary>
- /// instance of TestContext to be able to access deployed files
- /// </summary>
- private TestContext testContextInstance;
- /// <summary>
- ///Gets or sets the test context which provides
- ///information about and functionality for the current test run.
- ///</summary>
- public TestContext TestContext
- {
- get
- {
- return testContextInstance;
- }
- set
- {
- testContextInstance = value;
- }
- }
- /// <summary>
- /// creates a valid .isad file from the given sets of coordinates (number divisible by 3) by creating a line for every three consecutive points, parses the file and verifies that all lines and their points have been parsed correctly
- /// </summary>
- /// <param name="xCoordinates">an array containing the x coordinates of the points that will be created (length divisible by 3)</param>
- /// <param name="yCoordinates">an array containing the y coordinates of the points that will be created (length divisible by 3)</param>
- [DataTestMethod]
- [DataRow(new int[] { 54, 43, 57, 11, 145, 34, 113, 299, 0 }, new int[] { 33, 42, 140, 30, 30, 30, 32, 145, 2 })]
- [DataRow(new int[] { 33, 42, 140, 30, 30, 30, 32, 145, 2 }, new int[] { 33, 42, 140, 30, 30, 30, 32, 145, 2 })]
- [DataRow(new int[] { 33, 42, 140, 30, 30, 30, 32, 145, 2 }, new int[] { 54, 43, 57, 11, 145, 34, 113, 199, 0 })]
- public void ParseISADInputSuccessfulTest(int[] xCoordinates, int[] yCoordinates)
- {
- FileImporter uut = new FileImporter();
- List<String> file = new List<string>();
- file.Add("drawing");
- file.Add("300x200");
- for (int i = 0; i < xCoordinates.Length - 2; i += 3)
- {
- file.Add("line");
- file.Add(xCoordinates[i] + ";" + yCoordinates[i]);
- file.Add(xCoordinates[i + 1] + ";" + yCoordinates[i + 1]);
- file.Add(xCoordinates[i + 2] + ";" + yCoordinates[i + 2]);
- file.Add("endline");
- }
- file.Add("enddrawing");
- Tuple<int, int, List<InternalLine>> values = uut.ParseISADInputForTesting(file.ToArray());
- Assert.AreEqual(xCoordinates.Length / 3, values.Item3.Count);
- InternalLine[] lines = values.Item3.ToArray();
- for (int i = 0; i < xCoordinates.Length - 2; i += 3)
- {
- Point[] currentLine = lines[i / 3].GetPoints().ToArray();
- Assert.AreEqual(3, currentLine.Length);
- for (int j = 0; j < 3; j++)
- {
- Assert.IsTrue(currentLine[j].X == xCoordinates[i + j] && currentLine[j].Y == yCoordinates[i + j]);
- }
- }
- }
- /// <summary>
- /// parses teh given invalid .isad files and verifies that a FileImporterException is thrown, but no other exception
- /// </summary>
- /// <param name="file">the input file represented as an array of lines</param>
- [DataTestMethod]
- [DataRow(new String[] {})]
- [DataRow(new String[] { "begindrawing", "300x300", "line", "50;50", "100;50", "endline", "enddrawing" })]
- [DataRow(new String[] { "drawing", "300;300", "line", "50;50", "100;50", "endline", "enddrawing" })]
- [DataRow(new String[] { "drawing", "30.5x300", "line", "50;50", "100;50", "endline", "enddrawing" })]
- [DataRow(new String[] { "drawing", "line", "50;50", "100;50", "endline", "enddrawing" })]
- [DataRow(new String[] { "drawing", "300x300", "beginline", "50;50", "100;50", "endline", "enddrawing" })]
- [DataRow(new String[] { "drawing", "300x300", "line", "500;50", "100;50", "endline", "enddrawing" })]
- [DataRow(new String[] { "drawing", "300x300", "line", "50x50", "100;50", "endline", "enddrawing" })]
- [DataRow(new String[] { "drawing", "300x300", "line", "50", "100", "endline", "enddrawing" })]
- [DataRow(new String[] { "drawing", "300x300", "line", "50;50", "line", "endline", "enddrawing" })]
- [DataRow(new String[] { "drawing", "300x300", "line", "50;50", "100;50", "stopline", "enddrawing" })]
- [DataRow(new String[] { "drawing", "300x300", "line", "50;50", "100;50", "enddrawing" })]
- [DataRow(new String[] { "drawing", "300x300", "line", "50;50", "100;50", "endline", "endrawing" })]
- [DataRow(new String[] { "drawing", "300x300", "line", "50;50", "100;50", "endline" })]
- public void ParseISADInputExceptionTest(String[] file)
- {
- bool correctExceptionThrown = false;
- FileImporter uut = new FileImporter();
- try
- {
- //try to initialize the left image with an invalid isad drawing
- Tuple<int, int, List<InternalLine>> values1 = uut.ParseISADInputForTesting(file);
- }
- catch (FileImporterException)
- {
- //save the occurence of an exception
- correctExceptionThrown = true;
- }
- catch (Exception e)
- {
- //don't set success flag
- }
- //check that an exception has been thrown
- Assert.IsTrue(correctExceptionThrown);
- }
- /// <summary>
- /// parses all whitelisted files and ensures no exceptions are thrown (parsing abortion, e.g. due to corrupted input files, are realized by throwing a FileImporterException)
- /// </summary>
- [TestMethod]
- [TestCategory("FileIO")]
- public void ParseSVGInputNoErrorForWhitelistedFilesTest()
- {
- FileImporter uut = new FileImporter();
- string[] files = Directory.GetFiles(TestContext.DeploymentDirectory + @"\test_input_files\whitelisted", "*.svg", SearchOption.AllDirectories);
-
- Assert.IsTrue(files.Length > 0);
- foreach (string s in files) //parse each of the whitelisted files
- {
- Console.WriteLine(s);
- bool noExceptionThrown = true;
- try
- {
- uut.ParseSVGInputFile(s, 10000, 10000);
- }
- catch (Exception e)
- {
- noExceptionThrown = false;
- }
- Assert.IsTrue(noExceptionThrown);
- }
- }
- /// <summary>
- /// parses all blacklisted files and ensures an instance of FileIporterException is thrown for each file, but no other exceptions occur
- /// </summary>
- [TestMethod]
- [TestCategory("FileIO")]
- public void ParseSVGInputNoErrorForBlacklistedFilesTest()
- {
- FileImporter uut = new FileImporter();
- string[] files = Directory.GetFiles(TestContext.DeploymentDirectory + @"\test_input_files\blacklisted", "*.svg", SearchOption.AllDirectories);
- Assert.IsTrue(files.Length > 0);
- foreach (string s in files) //parse each of the blacklisted files
- {
- bool correctExceptionThrown = false;
- try
- {
- uut.ParseSVGInputFile(s, 10000, 10000);
- }
- catch (FileImporterException e)
- {
- correctExceptionThrown = true;
- }
- catch (Exception e)
- {
- }
- Assert.IsTrue(correctExceptionThrown);
- }
- }
- }
- }
|