using System.Collections.Generic; namespace Infrastructure.Common { public static partial class TestProperties { public static readonly string ServicePort_PropertyName = "ServicePort"; public static readonly string ServiceHttpPort_PropertyName = "ServiceHttpPort"; public static readonly string ServiceHttpsPort_PropertyName = "ServiceHttpsPort"; public static readonly string ServiceTcpPort_PropertyName = "ServiceTcpPort"; public static readonly string ServiceWebSocketPort_PropertyName = "ServiceWebSocketPort"; public static readonly string ServiceSecureWebSocketPort_PropertyName = "ServiceSecureWebSocketPort"; public static readonly string TestRootCertificatePassword_PropertyName = "TestRootCertificatePassword"; public static readonly string TestRootCertificateValidityPeriod_PropertyName = "TestRootCertificateValidityPeriod"; public static readonly string MaxTestTimeSpan_PropertyName = "MaxTestTimeSpan"; public static readonly string NegotiateTestRealm_PropertyName = "NegotiateTestRealm"; public static readonly string NegotiateTestDomain_PropertyName = "NegotiateTestDomain"; public static readonly string NegotiateTestSpn_PropertyName = "NegotiateTestSpn"; public static readonly string NegotiateTestUpn_PropertyName = "NegotiateTestUpn"; public static readonly string Domain_Joined_PropertyName = "Domain_Joined"; public static readonly string Server_Domain_Joined_PropertyName = "Server_Domain_Joined"; public static readonly string Root_Certificate_Installed_PropertyName = "Root_Certificate_Installed"; public static readonly string Client_Certificate_Installed_PropertyName = "Client_Certificate_Installed"; public static readonly string Peer_Certificate_Installed_PropertyName = "Peer_Certificate_Installed"; public static readonly string OSXPeer_Certificate_Installed_PropertyName = "OSXPeer_Certificate_Installed"; public static readonly string SPN_Available_PropertyName = "SPN_Available"; public static readonly string Server_Accepts_Certificates_PropertyName = "Server_Accepts_Certificates"; public static readonly string Ambient_Credentials_Available_PropertyName = "Ambient_Credentials_Available"; public static readonly string Explicit_Credentials_Available_PropertyName = "Explicit_Credentials_Available"; public static readonly string Basic_Authentication_Available_PropertyName = "Basic_Authentication_Available"; public static readonly string Digest_Authentication_Available_PropertyName = "Digest_Authentication_Available"; public static readonly string Windows_Authentication_Available_PropertyName = "Windows_Authentication_Available"; public static readonly string NTLM_Available_PropertyName = "NTLM_Available"; public static readonly string ServiceUri_PropertyName = "ServiceUri"; public static readonly string ExplicitUserName_PropertyName = "ExplicitUserName"; public static readonly string ExplicitPassword_PropertyName = "ExplicitPassword"; public static readonly string SSL_Available_PropertyName = "SSL_Available"; public static readonly string IncludeTestsWithIssues_PropertyName = "IncludeTestsWithIssues"; static partial void Initialize(Dictionary<string, string> properties) { properties["ServicePort"] = "44283"; properties["ServiceHttpPort"] = "8081"; properties["ServiceHttpsPort"] = "44285"; properties["ServiceTcpPort"] = "809"; properties["ServiceWebSocketPort"] = "8083"; properties["ServiceSecureWebSocketPort"] = "8084"; properties["TestRootCertificatePassword"] = "test"; properties["TestRootCertificateValidityPeriod"] = "7.00:00:00"; properties["MaxTestTimeSpan"] = "00:01:00"; properties["NegotiateTestRealm"] = ""; properties["NegotiateTestDomain"] = ""; properties["NegotiateTestSpn"] = ""; properties["NegotiateTestUpn"] = ""; properties["Domain_Joined"] = ""; properties["Server_Domain_Joined"] = ""; properties["Root_Certificate_Installed"] = ""; properties["Client_Certificate_Installed"] = ""; properties["Peer_Certificate_Installed"] = ""; properties["OSXPeer_Certificate_Installed"] = ""; properties["SPN_Available"] = ""; properties["UPN_Available"] = ""; properties["Server_Accepts_Certificates"] = ""; properties["Ambient_Credentials_Available"] = ""; properties["Explicit_Credentials_Available"] = ""; properties["Basic_Authentication_Available"] = ""; properties["Digest_Authentication_Available"] = ""; properties["Windows_Authentication_Available"] = ""; properties["NTLM_Available"] = ""; properties["ServiceUri"] = "localhost"; properties["ExplicitUserName"] = ""; properties["ExplicitPassword"] = ""; properties["SSL_Available"] = ""; properties["IncludeTestsWithIssues"] = ""; } } } |