コード例 #1
0
        public async Task RetrospectiveStatusMapper_ReturnsRetrospectiveInfo()
        {
            // Given
            var retro = new Retrospective {
                Title        = "Yet another test",
                Participants =
                {
                    new Participant {
                        Name = "John", Color = Color.BlueViolet
                    },
                    new Participant {
                        Name = "Jane", Color = Color.Aqua
                    },
                },
                HashedPassphrase = "abef",
                CurrentStage     = RetrospectiveStage.Writing
            };
            string retroId = retro.UrlId.StringId;

            this.Context.Retrospectives.Add(retro);
            await this.Context.SaveChangesAsync(CancellationToken.None);

            var mapper = new RetrospectiveStatusMapper(this.Context, this.Mapper);

            // When
            var result = await mapper.GetRetrospectiveStatus(retro, CancellationToken.None);

            // Then
            Assert.That(result.Lanes, Has.Count.EqualTo(3 /* Based on seed data */));
            Assert.That(result.IsEditingNotesAllowed, Is.True);
            Assert.That(result.IsViewingOtherNotesAllowed, Is.False);
            Assert.That(result.RetroId, Is.EqualTo(retroId));
            Assert.That(result.Title, Is.EqualTo(retro.Title));
        }
コード例 #2
0
        public void RetrospectiveStatusMapper_NullArgument_ThrowsArgumentNullException()
        {
            // Given
            var mapper = new RetrospectiveStatusMapper(this.Context, this.Mapper);

            // When
            TestDelegate action = () => mapper.GetRetrospectiveStatus(null, CancellationToken.None).GetAwaiter().GetResult();

            // Then
            Assert.That(action, Throws.ArgumentNullException);
        }