public void TestDeserializeSingleCityWithValues() { var expectedCity = new City("Aarau", "Switzerland", 10, 1.1, 2.2); var stream = new StringReader(CityWithValues); var reader = new SimpleObjectReader(stream); var city = reader.Next() as City; Assert.IsNotNull(city); Assert.AreEqual(expectedCity.Name, city.Name); Assert.AreEqual(expectedCity.Country, city.Country); Assert.AreEqual(expectedCity.Location.Latitude, city.Location.Latitude); }
static void Main(string[] args) { var c = new City("Aarau", "Switzerland", 10, 1.1, 2.2); //Console.WriteLine(c.Location.GetType()); var stream = new StringWriter(); SimpleObjectWriter w = new SimpleObjectWriter(stream); w.Next(c); var objstr = stream.ToString(); Console.Write(objstr + "\r\n"); var stream2 = new StringReader(objstr); SimpleObjectReader r = new SimpleObjectReader(stream2); var city = r.Next() as City; Console.WriteLine(city.Name); Console.WriteLine(city.Country); Console.WriteLine(city.Population); Console.WriteLine(city.Location); Console.WriteLine(city.Location.Name); Console.WriteLine(city.Location.Latitude); Console.WriteLine(city.Location.Longitude); Console.Write("Welcome to RoutePlanner {0}\n", Assembly.GetExecutingAssembly().GetName().Version); var wayPoint = new WayPoint("Windisch", 47.479319847061966, 8.212966918945312); //Console.WriteLine("{0}: {1}/{2}", wayPoint.Name, wayPoint.Latitude, wayPoint.Longitude); Console.WriteLine(wayPoint); wayPoint.Name = ""; Console.WriteLine(wayPoint); wayPoint.Name = null; Console.WriteLine(wayPoint); var cities = new Cities(); Console.WriteLine(cities.ReadCities(@"data\citiesTestDataLab3.txt")); var routes = new Routes(cities); var count = routes.ReadRoutes(@"data\linksTestDataLab3.txt"); var citiesError = new Cities(); Console.WriteLine(cities.ReadCities(@"data\citiesTestDataLab253.txt")); Console.ReadKey(); }
public void TestDeserializeMultCitiesWithValues() { const string cityString1 = "Instance of Fhnw.Ecnf.RoutePlanner.RoutePlannerLib.City\r\n" + "Country=\"Switzerland\"\r\n" + "Location is a nested object...\r\n" + "Instance of Fhnw.Ecnf.RoutePlanner.RoutePlannerLib.WayPoint\r\n" + "Latitude=1.1\r\n" + "Longitude=2.2\r\n" + "Name=\"Aarau\"\r\n" + "End of instance\r\n" + "Name=\"Aarau\"\r\n" + "Population=10\r\n" + "End of instance\r\n"; const string cityString2 = "Instance of Fhnw.Ecnf.RoutePlanner.RoutePlannerLib.City\r\n" + "Country=\"Switzerland\"\r\n" + "Location is a nested object...\r\n" + "Instance of Fhnw.Ecnf.RoutePlanner.RoutePlannerLib.WayPoint\r\n" + "Latitude=1.1\r\n" + "Longitude=2.2\r\n" + "Name=\"Bern\"\r\n" + "End of instance\r\n" + "Name=\"Bern\"\r\n" + "Population=10\r\n" + "End of instance\r\n"; const string cityString = cityString1 + cityString2; var expectedCity1 = new City("Aarau", "Switzerland", 10, 1.1, 2.2); var expectedCity2 = new City("Bern", "Switzerland", 10, 1.1, 2.2); var reader = new SimpleObjectReader(new StringReader(cityString)); var city1 = reader.Next() as City; Assert.IsNotNull(city1); Assert.AreEqual(expectedCity1.Name, city1.Name); Assert.AreEqual(expectedCity1.Country, city1.Country); Assert.AreEqual(expectedCity1.Location.Latitude, city1.Location.Latitude); var city2 = reader.Next() as City; Assert.IsNotNull(city2); Assert.AreEqual(expectedCity2.Name, city2.Name); Assert.AreEqual(expectedCity2.Country, city2.Country); Assert.AreEqual(expectedCity2.Location.Latitude, city2.Location.Latitude); }
public void TestSerializationCulture() { const string expected = "Instance of Fhnw.Ecnf.RoutePlanner.RoutePlannerTest.SerializeTest\r\n" + "ADouble=0.54444\r\n" + "BInt=1\r\n" + "CString=\"a\"\r\n" + "End of instance\r\n"; var previousCulture = Thread.CurrentThread.CurrentCulture; try { // should work, even in "weird" cultures, // see http://www.moserware.com/2008/02/does-your-code-pass-turkey-test.html Thread.CurrentThread.CurrentCulture = new CultureInfo("de-CH"); var obj1 = new SimpleObjectReader(new StringReader(expected)).Next() as SerializeTest; var sw1 = new StringWriter(); new SimpleObjectWriter(sw1).Next(obj1); Thread.CurrentThread.CurrentCulture = new CultureInfo("de-DE"); var obj2 = new SimpleObjectReader(new StringReader(expected)).Next() as SerializeTest; var sw2 = new StringWriter(); new SimpleObjectWriter(sw2).Next(obj2); Thread.CurrentThread.CurrentCulture = new CultureInfo("tr-TR"); var obj3 = new SimpleObjectReader(new StringReader(expected)).Next() as SerializeTest; var sw3 = new StringWriter(); new SimpleObjectWriter(sw3).Next(obj3); Assert.AreEqual(sw1.ToString(), sw2.ToString()); Assert.AreEqual(sw2.ToString(), sw3.ToString()); } finally { Thread.CurrentThread.CurrentCulture = previousCulture; } }
public void TestSerializeOtherThings() { const string expected = "Instance of Fhnw.Ecnf.RoutePlanner.RoutePlannerTest.SerializeTest\r\n" + "ADouble=0.54444\r\n" + "BInt=1\r\n" + "CString=\"a\"\r\n" + "End of instance\r\n"; var obj = new SimpleObjectReader(new StringReader(expected)).Next() as SerializeTest; Assert.AreEqual(obj.CString, "a"); Assert.AreEqual(obj.ADouble, 0.54444); Assert.AreEqual(obj.BInt, 1); { var sw = new StringWriter(); new SimpleObjectWriter(sw).Next(obj); Assert.AreEqual(expected, sw.ToString()); } { var tl = new ThirdLevel() { t = new SecondLevel() { t = obj } }; var sw = new StringWriter(); new SimpleObjectWriter(sw).Next(tl); Assert.AreEqual( "Instance of Fhnw.Ecnf.RoutePlanner.RoutePlannerTest.ThirdLevel\r\n" + "t is a nested object...\r\n" + "Instance of Fhnw.Ecnf.RoutePlanner.RoutePlannerTest.SecondLevel\r\n" + "t is a nested object...\r\n" + "Instance of Fhnw.Ecnf.RoutePlanner.RoutePlannerTest.SerializeTest\r\n" + "ADouble=0.54444\r\n" + "BInt=1\r\n" + "CString=\"a\"\r\n" + "End of instance\r\n" + "End of instance\r\n" + "End of instance\r\n", sw.ToString()); } }
static void Main(string[] args) { Version version = Assembly.GetEntryAssembly().GetName().Version; Console.WriteLine("Welcome to RoutePlanner ({0})", version); WayPoint wayPoint = new WayPoint("Windisch", 47.479319847061966, 8.212966918945312); Console.WriteLine(wayPoint.ToString()); WayPoint wpBern = new WayPoint("Bern", 46.9472221, 7.451202500000022); WayPoint wpTripolis = new WayPoint("Tripolis", 59.86062519999999, 17.650885199999948); Console.WriteLine("Distanz Bern-Tripolis: {0}km", wpBern.Distance(wpTripolis)); City cBern = new City("Bern", "Schweiz", 75000, 47.479319847061966, 8.212966918945312); City c0 = new City("Mumbai", "India", 12383146, 18.96, 72.82); string serializedCity = string.Empty; using (StringWriter outstream = new StringWriter()) { SimpleObjectWriter writer = new SimpleObjectWriter(outstream); writer.Next(cBern); serializedCity = outstream.ToString(); } Console.WriteLine(serializedCity); using(StringReader inStream = new StringReader(serializedCity)) { SimpleObjectReader reader = new SimpleObjectReader(inStream); object o = reader.Next(); } WayPoint wp = c0.Location; Cities c = new Cities(); c.ReadCities("citiesTestDataLab2.txt"); c.FindNeighbours(wp,2000); c.ReadCities("citiesTestDataLab2.txt"); var routes = new RoutesDijkstra(c); var reqWatch = new RouteRequestWatcher(); routes.RouteRequestEvent += reqWatch.LogRouteRequests; routes.FindShortestRouteBetween("Mumbai", "India", TransportModes.Rail); routes.FindShortestRouteBetween("Mumbai", "India", TransportModes.Rail); routes.FindShortestRouteBetween("India", "Mumbai", TransportModes.Rail); Console.WriteLine("City found: {0}", c.FindCity("Mumbai").Name); c.ReadCities("citiesTestDataLab4.txt"); Routes r = new RoutesDijkstra(c); r.RouteRequestEvent += reqWatch.LogRouteRequests; r.ReadRoutes("linksTestDataLab4.txt"); List<Link> l = r.FindShortestRouteBetween("Zürich", "Winterthur", TransportModes.Rail); foreach (Link link in l) { Console.WriteLine("from {0} to {1} in {2}", link.FromCity.Name, link.ToCity.Name, link.Distance); } Console.ReadKey(); City zurich = c.FindCity("Zürich"); City winterthur = c.FindCity("Winterthur"); ExcelExchange export = new ExcelExchange(); export.WriteToFile("Test.xls", zurich, winterthur,l); }