public void BuildOrder_6()
        {
            int          ExpectedOutput = -2;
            int          GotOutput      = 0;
            IUserProfile UserProfileObj = new UserProfile();

            UserProfileObj.SetEmail("*****@*****.**");
            List <string> token = new SecurityDataLayer(UserProfileObj).GetTokenList();

            if (token.Count == 0)
            {
                // token count = 0 means that the account is not logged in or all sessions destroyed
                // generate the token
                UserProfileObj.SetPassword("Root@123");
                LoginUserReponse response = new UserActions().LoginUserAction(UserProfileObj);
                token = new SecurityDataLayer(UserProfileObj).GetTokenList();
            }
            UserProfileObj.SetToken(token[token.Count - 1].ToString());
            IOrder OrderObj = new Order();

            OrderObj.SetOrderType("");
            try
            {
                OrderDetailsTemplate         AllOrdersObj = new AllOrdersTemplate(UserProfileObj, OrderObj);
                List <IOrderBuilderResponse> Output       = AllOrdersObj.BuildOrder();
            }
            catch (Exception)
            {
                GotOutput = -2;
            }
            Assert.AreEqual(GotOutput, ExpectedOutput);
        }
        public void BuildOrder_4()
        {
            IUserProfile UserProfileObj = new UserProfile();
            IOrder       OrderObj       = new Order();

            UserProfileObj.SetToken("ABCD");
            OrderObj.SetOrderType("Group");
            OrderDetailsTemplate         AllOrdersObj = new AllOrdersTemplate(UserProfileObj, OrderObj);
            List <IOrderBuilderResponse> Output       = AllOrdersObj.BuildOrder();

            Assert.AreEqual(Output.Count == 0, true);
        }
 public override List <IOrderBuilderResponse> FetchAllOrders()
 {
     try
     {
         OrderDetailsTemplate AllOrders = new AllOrdersTemplate(UserProfileObj, OrderObj);
         return(AllOrders.BuildOrder());
     }
     catch (Exception ex)
     {
         Logger.Instance().Log(Fatal.Instance(), ex);
         throw ex;
     }
 }
        public void BuildOrder_3()
        {
            int          ExpectedOutput = -2;
            int          GotOutput      = 0;
            IUserProfile UserProfileObj = new UserProfile();
            IOrder       OrderObj       = new Order();

            UserProfileObj.SetToken("");
            OrderObj.SetOrderType("Group");
            try
            {
                OrderDetailsTemplate         AllOrdersObj = new AllOrdersTemplate(UserProfileObj, OrderObj);
                List <IOrderBuilderResponse> Output       = AllOrdersObj.BuildOrder();
            }
            catch (Exception)
            {
                GotOutput = -2;
            }
            Assert.AreEqual(GotOutput, ExpectedOutput);
        }