Beispiel #1
0
			user1 = models.UserFields{}
			user1.Username = "******"
			user2 = models.UserFields{}
			user2.Username = "******"

			requirementsFactory.LoginSuccess = true
			requirementsFactory.Organization = org
		})

		Context("shows friendly messaage when no users in ORG_MANAGER role", func() {
			It("shows the special users in the given org", func() {
				userRepo.ListUsersInOrgForRoleStub = func(_ string, roleName string) ([]models.UserFields, error) {
					userFields := map[string][]models.UserFields{
						models.ORG_MANAGER:     []models.UserFields{},
						models.BILLING_MANAGER: []models.UserFields{user1},
						models.ORG_AUDITOR:     []models.UserFields{user2},
					}[roleName]
					return userFields, nil
				}

				runCommand("the-org")

				Expect(userRepo.ListUsersInOrgForRoleCallCount()).To(Equal(3))
				for i, expectedRole := range []string{models.ORG_MANAGER, models.BILLING_MANAGER, models.ORG_AUDITOR} {
					orgGuid, actualRole := userRepo.ListUsersInOrgForRoleArgsForCall(i)
					Expect(orgGuid).To(Equal("the-org-guid"))
					Expect(actualRole).To(Equal(expectedRole))
				}

				Expect(ui.Outputs).To(BeInDisplayOrder(
					[]string{"Getting users in org", "the-org", "my-user"},