public void Read_should_throw_exception_when_root_element_is_missing() { // Arrange string xml = @"<?xml version=""1.0"" encoding=""utf-8"" ?><something></something>"; var stringReader = new StringReader(xml); var configReader = new ConfigReader(); // Act + Assert Assert.Throws<ConfigurationException>(() => configReader.Read(stringReader)); }
public void Read_should_populate_custom_variables() { // Arrange var configReader = new ConfigReader(); string xml = GetConfigXmlWithCustomVariables(); StringReader stringReader = new StringReader(xml); // Act Config config = configReader.Read(stringReader); // Assert Assert.AreEqual("http://www.google.com", config.Variables.ByName("baseurl")); Assert.AreEqual("http://www.bing.com", config.Variables.ByName("baseurl1")); Assert.AreEqual("http://www.yahoo.com", config.Variables.ByName("baseurl88")); Assert.AreEqual("http://www.dogpile.com", config.Variables.ByName("myvariable")); }
public void Read_should_populate_known_properties() { // Arrange var configReader = new ConfigReader(); string xml = GetConfigXml(); StringReader stringReader = new StringReader(xml); // Act Config config = configReader.Read(stringReader); // Assert Assert.IsNotNull(config.Variables); Assert.AreEqual("http://www.google.com", config.BaseUrl); Assert.AreEqual("my proxy", config.Proxy); Assert.AreEqual("AOL IE 6", config.Useragent); Assert.AreEqual("http://*****:*****@127.0.0.1:8080", config.Httpauth); Assert.AreEqual(LogType.OnFail, config.GlobalHttpLog); Assert.AreEqual("My config comment", config.Comment); Assert.AreEqual(44, config.Timeout); Assert.AreEqual(88, config.GlobalTimeout); }