private void VerifyRDPExtension() { vmPowershellCmdlets.GetAzureRemoteDesktopFile(vmName, serviceName, rdpPath, false); using (StreamReader stream = new StreamReader(rdpPath)) { string firstLine = stream.ReadLine(); dns = Utilities.FindSubstring(firstLine, ':', 2); } Assert.IsTrue((Utilities.RDPtestIaaS(dns, 0, vmAccessUserName, vmAccessPassword, true)), "Cannot RDP to the instance!!"); }
public static void CompareWadCfg(string wadcfg, XmlDocument daconfig) { if (string.IsNullOrWhiteSpace(wadcfg)) { Assert.IsNull(wadcfg); } else { string innerXml = daconfig.InnerXml; StringAssert.Contains(Utilities.FindSubstring(innerXml, '<', 2), Utilities.FindSubstring(wadcfg, '<', 2)); } }
public static string GetInnerXml(string xmlString, string tag) { string removedHeader = "<" + Utilities.FindSubstring(xmlString, '<', 2); byte[] encodedString = Encoding.UTF8.GetBytes(xmlString); MemoryStream stream = new MemoryStream(encodedString); stream.Flush(); stream.Position = 0; XmlDocument xml = new XmlDocument(); xml.Load(stream); return(xml.GetElementsByTagName(tag)[0].InnerXml); }
protected void VerifyRDP(string serviceName, string rdpPath) { Utilities.GetDeploymentAndWaitForReady(serviceName, DeploymentSlotType.Production, 10, 600); vmPowershellCmdlets.GetAzureRemoteDesktopFile("WebRole1_IN_0", serviceName, rdpPath, false); string dns; using (var stream = new StreamReader(rdpPath)) { string firstLine = stream.ReadLine(); dns = Utilities.FindSubstring(firstLine, ':', 2); } Assert.IsTrue((Utilities.RDPtestPaaS(dns, "WebRole1", 0, username, password, true)), "Cannot RDP to the instance!!"); }
private void VerifyRDPExtension(string vmName, string serviceName) { Console.WriteLine("Fetching Azure VM RDP file"); vmPowershellCmdlets.GetAzureRemoteDesktopFile(vmName, serviceName, rdpPath, false); using (StreamReader stream = new StreamReader(rdpPath)) { string firstLine = stream.ReadLine(); var dnsAndport = Utilities.FindSubstring(firstLine, ':', 2).Split(new char[] { ':' }); dns = dnsAndport[0]; port = int.Parse(dnsAndport[1]); } Console.WriteLine("Azure VM RDP file downloaded."); Console.WriteLine("Waiting for a minute vefore trying to connect to VM"); Thread.Sleep(TimeSpan.FromMinutes(4)); Utilities.RetryActionUntilSuccess(() => ValidateLogin(dns, port, vmAccessUserName, vmAccessPassword), "Cannot RDP to the instance!!", 5, 10000); }
public static bool CompareWadCfg(string wadcfg, XmlDocument daconfig) { try { if (string.IsNullOrWhiteSpace(wadcfg)) { Assert.IsNull(wadcfg); } else { string innerXml = daconfig.InnerXml; Assert.AreEqual(Utilities.FindSubstring(wadcfg, '<', 2), Utilities.FindSubstring(innerXml, '<', 2)); } return(true); } catch { return(false); } }
public void AzureServiceExtensionTest() { StartTest(MethodBase.GetCurrentMethod().Name, testStartTime); const string rdpPath = @".\WebRole2.rdp"; try { Collection <ExtensionImageContext> resultExtensions = vmPowershellCmdlets.GetAzureServiceAvailableExtension(); foreach (var extension in resultExtensions) { if (extension.ExtensionName == "RDP") { _extensionName = extension.ExtensionName; _providerNamespace = extension.ProviderNameSpace; break; } } vmPowershellCmdlets.NewAzureService(_serviceName, _serviceName, locationName); Console.WriteLine("service, {0}, is created.", _serviceName); vmPowershellCmdlets.NewAzureDeployment(_serviceName, _packagePath.FullName, _configPath.FullName, DeploymentSlotType.Production, DeploymentLabel, DeploymentName, false, false); DeploymentInfoContext result = vmPowershellCmdlets.GetAzureDeployment(_serviceName, DeploymentSlotType.Production); pass = Utilities.PrintAndCompareDeployment(result, _serviceName, DeploymentName, DeploymentLabel, DeploymentSlotType.Production, null, 2); Console.WriteLine("successfully deployed the package"); vmPowershellCmdlets.SetAzureServiceExtension( serviceName: _serviceName, extensionName: _extensionName, providerNamespace: _providerNamespace, publicConfig: PublicConfig, privateConfig: PrivateConfig ); ExtensionContext resultExtensionContext = vmPowershellCmdlets.GetAzureServiceExtension(_serviceName)[0]; Utilities.PrintContext(resultExtensionContext); VerifyExtensionContext(resultExtensionContext, "AllRoles", _extensionName, _providerNamespace); RemoteDesktopExtensionContext resultContext = vmPowershellCmdlets.GetAzureServiceRemoteDesktopExtension(_serviceName)[0]; Utilities.PrintContext(resultContext); vmPowershellCmdlets.GetAzureRemoteDesktopFile("WebRole1_IN_0", _serviceName, rdpPath, false); string dns; using (var stream = new StreamReader(rdpPath)) { string firstLine = stream.ReadLine(); dns = Utilities.FindSubstring(firstLine, ':', 2); } Assert.IsTrue((Utilities.RDPtestPaaS(dns, "WebRole1", 0, username, password, true)), "Cannot RDP to the instance!!"); vmPowershellCmdlets.RemoveAzureServiceExtension( serviceName: _serviceName, extensionName: _extensionName, providerNamespace: _providerNamespace, uninstall: true); try { vmPowershellCmdlets.GetAzureRemoteDesktopFile("WebRole1_IN_0", _serviceName, rdpPath, false); Assert.Fail("Succeeded, but extected to fail!"); } catch (Exception e) { if (e is AssertFailedException) { throw; } Console.WriteLine("Failed to get RDP file as expected"); } vmPowershellCmdlets.RemoveAzureDeployment(_serviceName, DeploymentSlotType.Production, true); pass &= Utilities.CheckRemove(vmPowershellCmdlets.GetAzureDeployment, _serviceName, DeploymentSlotType.Production); } catch (Exception e) { Console.WriteLine("Exception occurred: {0}", e); throw; } }