Example #1
0
        //Console app callup
        public SBWSCommon(string reportSummaryPath, string reportDetailedPath, LogWriter _writercls, XElement _rootcls, AssertClass _Assertcls)
        {
            proxy       = new ChannelFactory <IRegistrationWebService>("Cws.Poc.RegistrationWebService");
            serviceName = proxy.Endpoint.Address.Uri.Segments[proxy.Endpoint.Address.Uri.Segments.Length - 1].Split('.')[0];

            target          = proxy.CreateChannel();
            proxy2          = new ChannelFactory <IAccountWebService>("Cws.Poc.AccountWebService");
            target2         = proxy2.CreateChannel();
            proxy1          = new ChannelFactory <IUserEntitlementWebService>("Cws.Poc.UserEntitlementWebService");
            target1         = proxy1.CreateChannel();
            proxy3          = new ChannelFactory <IAccountDomainWebService>("Cws.Poc.AccountDomainWebService");
            target3         = proxy3.CreateChannel();
            proxy4          = new ChannelFactory <IUserProfileWebService>("Cws.Poc.UserProfileWebService");
            target4         = proxy4.CreateChannel();
            proxy5          = new ChannelFactory <IAuthenticationWebService>("Cws.Poc.AuthenticationWebService1");
            target5         = proxy5.CreateChannel();
            proxy6          = new ChannelFactory <ILoginWebService>("Cws.Poc.LoginWebService1");
            target6         = proxy6.CreateChannel();
            refreshProxy    = new ChannelFactory <IRefreshWebService>("Cws.Poc.RefreshWebService");
            refreshService  = refreshProxy.CreateChannel();
            LogSummaryFile  = reportSummaryPath;
            LogDetailedFile = reportDetailedPath;
            _writer         = _writercls;
            _Assert         = _Assertcls;
            //SBWSCommon.EnvironmentLevel = ConfigurationManager.AppSettings["ExecutionEnvironment"];
            //_writer.CreateXmlFile(LogSummaryFile, "Summary");
            //_writer.CreateXmlFile(LogDetailedFile, "Detailed");
            //_writer.LoadLogWriter(LogSummaryFile, LogDetailedFile);
            root = _rootcls;
        }
 //Console app callup
 public RefreshWebserviceTest(string reportSummaryPath, string reportDetailedPath, LogWriter _writercls, XElement _rootcls, AssertClass _Assertcls)
 {
     proxy           = new ChannelFactory <IUserProfileWebService>("Cws.Poc.UserProfileWebService");
     target          = proxy.CreateChannel();
     refreshProxy    = new ChannelFactory <IRefreshWebService>("Cws.Poc.RefreshWebService");
     serviceName     = refreshProxy.Endpoint.Address.Uri.Segments[refreshProxy.Endpoint.Address.Uri.Segments.Length - 1].Split('.')[0];
     Target          = refreshProxy.CreateChannel();
     LogSummaryFile  = reportSummaryPath;
     LogDetailedFile = reportDetailedPath;
     _writer         = _writercls;
     _Assert         = _Assertcls;
     root            = _rootcls;
     // objSBWSCommon = new SBWSCommon(LogSummaryFile, LogDetailedFile, _writer, root, _Assert);
     // objRWS = new RegistrationServiceTests(LogSummaryFile, LogDetailedFile, _writer, root, _Assert);
 }
 public static void MyClassInitialize(TestContext testContext)
 {
     proxy        = new ChannelFactory <IUserProfileWebService>("Cws.Poc.UserProfileWebService");
     target       = proxy.CreateChannel();
     refreshProxy = new ChannelFactory <IRefreshWebService>("Cws.Poc.RefreshWebService");
     serviceName  = refreshProxy.Endpoint.Address.Uri.Segments[refreshProxy.Endpoint.Address.Uri.Segments.Length - 1].Split('.')[0];
     Target       = refreshProxy.CreateChannel();
     //_Assert = new UnitTesting.AssertClass(_writer);
     _writer.CreateXmlFile(LogSummaryFile, "Summary");
     _writer.CreateXmlFile(LogDetailedFile, "Detailed");
     _writer.LoadLogWriter(LogSummaryFile, LogDetailedFile);
     root = _writer.create_node("TestCase");
     //objSBWSCommon = new SBWSCommon(LogSummaryFile, LogDetailedFile, _writer, root, _Assert);
     //objRWS = new RegistrationServiceTests(LogSummaryFile, LogDetailedFile, _writer, root, _Assert);
 }
Example #4
0
        public static void MyClassInitialize(TestContext testContext)
        {
            if (isLocalRun)
            {
                proxy           = new ChannelFactory <IRegistrationWebService>("Cws.Poc.RegistrationWebService");
                target          = proxy.CreateChannel();
                proxy2          = new ChannelFactory <IAccountWebService>("Cws.Poc.AccountWebService");
                target2         = proxy2.CreateChannel();
                proxy1          = new ChannelFactory <IUserEntitlementWebService>("Cws.Poc.UserEntitlementWebService");
                target1         = proxy1.CreateChannel();
                proxy3          = new ChannelFactory <IAccountDomainWebService>("Cws.Poc.AccountDomainWebService");
                target3         = proxy3.CreateChannel();
                proxy4          = new ChannelFactory <IUserProfileWebService>("Cws.Poc.UserProfileWebService");
                target4         = proxy4.CreateChannel();
                proxy5          = new ChannelFactory <IAuthenticationWebService>("Cws.Poc.AuthenticationWebService1");
                target5         = proxy5.CreateChannel();
                proxy6          = new ChannelFactory <ILoginWebService>("Cws.Poc.LoginWebService1");
                target6         = proxy6.CreateChannel();
                refreshProxy    = new ChannelFactory <IRefreshWebService>("Cws.Poc.RefreshWebService");
                refreshService  = refreshProxy.CreateChannel();
                LogSummaryFile  = filePath + DateTime.Now.ToShortDateString().Replace("/", "") + DateTime.Now.ToLongTimeString().Replace(":", "") + "Summary.xml";
                LogDetailedFile = filePath + DateTime.Now.ToShortDateString().Replace("/", "") + DateTime.Now.ToLongTimeString().Replace(":", "") + "Detailed.xml";
                _writer         = new LogWriter();
                _Assert         = new AssertClass(_writer);
                _writer.CreateXmlFile(LogSummaryFile, "Summary");
                _writer.CreateXmlFile(LogDetailedFile, "Detailed");
                _writer.LoadLogWriter(LogSummaryFile, LogDetailedFile);
                root = _writer.create_node("TestCase");
            }

            //_writer = new LogWriter();
            //_writer.CreateXmlFile(LogSummaryFile, "Summary");
            //_writer.CreateXmlFile(LogDetailedFile, "Detailed");
            //_writer.LoadLogWriter(LogSummaryFile, LogDetailedFile);


            //root = _writer.create_node("TestCase");
        }
Example #5
0
        public SBWSCommon(XElement roots)
        {
            proxy       = new ChannelFactory <IRegistrationWebService>("Cws.Poc.RegistrationWebService");
            serviceName = proxy.Endpoint.Address.Uri.Segments[proxy.Endpoint.Address.Uri.Segments.Length - 1].Split('.')[0];

            target         = proxy.CreateChannel();
            proxy2         = new ChannelFactory <IAccountWebService>("Cws.Poc.AccountWebService");
            target2        = proxy2.CreateChannel();
            proxy1         = new ChannelFactory <IUserEntitlementWebService>("Cws.Poc.UserEntitlementWebService");
            target1        = proxy1.CreateChannel();
            proxy3         = new ChannelFactory <IAccountDomainWebService>("Cws.Poc.AccountDomainWebService");
            target3        = proxy3.CreateChannel();
            proxy4         = new ChannelFactory <IUserProfileWebService>("Cws.Poc.UserProfileWebService");
            target4        = proxy4.CreateChannel();
            proxy5         = new ChannelFactory <IAuthenticationWebService>("Cws.Poc.AuthenticationWebService1");
            target5        = proxy5.CreateChannel();
            proxy6         = new ChannelFactory <ILoginWebService>("Cws.Poc.LoginWebService1");
            target6        = proxy6.CreateChannel();
            refreshProxy   = new ChannelFactory <IRefreshWebService>("Cws.Poc.RefreshWebService");
            refreshService = refreshProxy.CreateChannel();


            _writer = new LogWriter();
            root    = roots;
            _writer.CreateXmlFile(LogSummaryFile, "Summary");
            _writer.CreateXmlFile(LogDetailedFile, "Detailed");
            _writer.LoadLogWriter(LogSummaryFile, LogDetailedFile);
            // SBWSCommon.EnvironmentLevel = ConfigurationManager.AppSettings["ExecutionEnvironment"];
            //proxy = new ChannelFactory<IUserProgramWebService>("Cws.Poc.UserProgramWebService");
            //target = proxy.CreateChannel();
            //_Assert = new AssertClass(_writer);

            //_writer.CreateXmlFile(LogSummaryFile, "Summary");
            //_writer.CreateXmlFile(LogDetailedFile, "Detailed");
            //_writer.LoadLogWriter(LogSummaryFile, LogDetailedFile);
            //root = _writer.create_node("TestCase");
        }
Example #6
0
 private static void FillObjects()
 {
     proxy          = new ChannelFactory <IRegistrationWebService>("Cws.Poc.RegistrationWebService");
     target         = proxy.CreateChannel();
     proxy2         = new ChannelFactory <IAccountWebService>("Cws.Poc.AccountWebService");
     target2        = proxy2.CreateChannel();
     proxy1         = new ChannelFactory <IUserEntitlementWebService>("Cws.Poc.UserEntitlementWebService");
     target1        = proxy1.CreateChannel();
     proxy3         = new ChannelFactory <IAccountDomainWebService>("Cws.Poc.AccountDomainWebService");
     target3        = proxy3.CreateChannel();
     proxy4         = new ChannelFactory <IUserProfileWebService>("Cws.Poc.UserProfileWebService");
     target4        = proxy4.CreateChannel();
     proxy5         = new ChannelFactory <IAuthenticationWebService>("Cws.Poc.AuthenticationWebService1");
     target5        = proxy5.CreateChannel();
     proxy6         = new ChannelFactory <ILoginWebService>("Cws.Poc.LoginWebService1");
     target6        = proxy6.CreateChannel();
     refreshProxy   = new ChannelFactory <IRefreshWebService>("Cws.Poc.RefreshWebService");
     refreshService = refreshProxy.CreateChannel();
     _writer        = new LogWriter();
     _writer.CreateXmlFile(LogSummaryFile, "Summary");
     _writer.CreateXmlFile(LogDetailedFile, "Detailed");
     _writer.LoadLogWriter(LogSummaryFile, LogDetailedFile);
     root = _writer.create_node("TestCase");
 }