コード例 #1
0
        public Task CanCreate_should_not_throw_exception_if_app_name_is_free()
        {
            var command = new CreateApp {
                Name = "new-app"
            };

            return(GuardApp.CanCreate(command, apps));
        }
コード例 #2
0
        public Task CanCreate_should_throw_exception_if_name_not_valid()
        {
            var command = new CreateApp {
                Name = "INVALID NAME"
            };

            return(Assert.ThrowsAsync <ValidationException>(() => GuardApp.CanCreate(command, apps)));
        }
コード例 #3
0
        public void CanChangePlan_should_throw_exception_if_plan_id_null()
        {
            var command = new ChangePlan {
                Actor = new RefToken("user", "me")
            };

            AppPlan plan = null;

            Assert.Throws <ValidationException>(() => GuardApp.CanChangePlan(command, plan, appPlans));
        }
コード例 #4
0
        public void CanChangePlan_should_not_throw_exception_if_same_user_but_other_plan()
        {
            var command = new ChangePlan {
                PlanId = "free", Actor = new RefToken("user", "me")
            };

            var plan = new AppPlan(new RefToken("user", "me"), "premium");

            GuardApp.CanChangePlan(command, plan, appPlans);
        }
コード例 #5
0
        public void CanChangePlan_should_throw_exception_if_plan_is_the_same()
        {
            var command = new ChangePlan {
                PlanId = "free", Actor = new RefToken("user", "me")
            };

            var plan = new AppPlan(new RefToken("user", "me"), "free");

            Assert.Throws <ValidationException>(() => GuardApp.CanChangePlan(command, plan, appPlans));
        }
コード例 #6
0
        public void CanChangePlan_should_throw_exception_if_plan_was_configured_from_another_user()
        {
            var command = new ChangePlan {
                PlanId = "free", Actor = new RefToken("user", "me")
            };

            var plan = new AppPlan(new RefToken("user", "other"), "premium");

            Assert.Throws <ValidationException>(() => GuardApp.CanChangePlan(command, plan, appPlans));
        }
コード例 #7
0
        public Task CanCreate_should_throw_exception_if_name_already_in_use()
        {
            A.CallTo(() => apps.GetAppAsync("new-app"))
            .Returns(A.Fake <IAppEntity>());

            var command = new CreateApp {
                Name = "new-app"
            };

            return(Assert.ThrowsAsync <ValidationException>(() => GuardApp.CanCreate(command, apps)));
        }
コード例 #8
0
        public void CanChangePlan_should_throw_exception_if_plan_not_found()
        {
            A.CallTo(() => appPlans.GetPlan("free"))
            .Returns(null);

            var command = new ChangePlan {
                PlanId = "free", Actor = new RefToken("user", "me")
            };

            AppPlan plan = null;

            Assert.Throws <ValidationException>(() => GuardApp.CanChangePlan(command, plan, appPlans));
        }