本文整理汇总了C#中AllReady.Controllers.EventApiController.PutCheckin方法的典型用法代码示例。如果您正苦于以下问题:C# EventApiController.PutCheckin方法的具体用法?C# EventApiController.PutCheckin怎么用?C# EventApiController.PutCheckin使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类AllReady.Controllers.EventApiController
的用法示例。
在下文中一共展示了EventApiController.PutCheckin方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: PutCheckinReturnsCorrectJsonWhenUsersSignedUpIsNullAndCheckinDateTimeIsNotNull
public async Task PutCheckinReturnsCorrectJsonWhenUsersSignedUpIsNullAndCheckinDateTimeIsNotNull()
{
const string userId = "userId";
var campaignEvent = new Event { Name = "EventName", Description = "EventDescription" };
var mediator = new Mock<IMediator>();
mediator.Setup(x => x.Send(It.IsAny<EventByIdQuery>())).Returns(campaignEvent);
var sut = new EventApiController(mediator.Object, null);
sut.SetFakeUser(userId);
var expected = $"{{ NeedsSignup = True, Event = {{ Name = {campaignEvent.Name}, Description = {campaignEvent.Description} }} }}";
var result = (JsonResult)await sut.PutCheckin(It.IsAny<int>());
Assert.IsType<JsonResult>(result);
Assert.Equal(expected, result.Value.ToString());
}
示例2: PutCheckinSendsEventByEventIdQueryWithCorrectEventId
public async Task PutCheckinSendsEventByEventIdQueryWithCorrectEventId()
{
const int eventId = 1;
var mediator = new Mock<IMediator>();
mediator.Setup(x => x.Send(It.IsAny<EventByIdQuery>())).Returns(new Event());
var sut = new EventApiController(mediator.Object, null);
await sut.PutCheckin(eventId);
mediator.Verify(x => x.Send(It.Is<EventByIdQuery>(y => y.EventId == eventId)), Times.Once);
}
示例3: Event
public async Task PutCheckinSendsAddEventSignupCommandAsyncWithCorrectDataWhenUsersSignedUpIsNotNullAndCheckinDateTimeIsNull()
{
const string userId = "userId";
var utcNow = DateTime.UtcNow;
var campaignEvent = new Event();
var eventSignup = new EventSignup { User = new ApplicationUser { Id = userId } };
campaignEvent.UsersSignedUp.Add(eventSignup);
var mediator = new Mock<IMediator>();
mediator.Setup(x => x.Send(It.IsAny<EventByIdQuery>())).Returns(campaignEvent);
var sut = new EventApiController(mediator.Object, null) { DateTimeUtcNow = () => utcNow };
sut.SetFakeUser(userId);
await sut.PutCheckin(It.IsAny<int>());
mediator.Verify(x => x.SendAsync(It.Is<AddEventSignupCommandAsync>(y => y.EventSignup == eventSignup)));
mediator.Verify(x => x.SendAsync(It.Is<AddEventSignupCommandAsync>(y => y.EventSignup.CheckinDateTime == utcNow)));
}
示例4: PutCheckinReturnsHttpNotFoundWhenUnableToFindEventByEventId
public async Task PutCheckinReturnsHttpNotFoundWhenUnableToFindEventByEventId()
{
var sut = new EventApiController(Mock.Of<IMediator>(), null);
var result = await sut.PutCheckin(It.IsAny<int>());
Assert.IsType<NotFoundResult>(result);
}