public async Task GetCameras_Failed_Authentication_For_Some_Reason_Tests() { // Arrange Mock <IDvtelMobileAdapter> mockMobile = new Mock <IDvtelMobileAdapter>(); mockMobile.Setup(mbl => mbl.Authenticate()).Throws(new DvtelVmsException(ErrorType.Unknown)); // Act DvtelMobileService srv = new DvtelMobileService(mockMobile.Object); List <Camera> cameras = await srv.GetCameras(); // Assert mockMobile.Verify(mbl => mbl.Authenticate(), Times.Once); mockMobile.Verify(mbl => mbl.Logout(), Times.Once); }
public async Task StartLive_Failed_Authentication_For_Some_Reason_Tests() { // Arrange Mock <IDvtelMobileAdapter> mockMobile = new Mock <IDvtelMobileAdapter>(); mockMobile.Setup(mbl => mbl.Authenticate()).Throws(new DvtelVmsException(ErrorType.Unknown)); // Act DvtelMobileService srv = new DvtelMobileService(mockMobile.Object); Uri url = await srv.StartLive(Guid.NewGuid(), "mjpeg"); // Assert mockMobile.Verify(mbl => mbl.Authenticate(), Times.Once); mockMobile.Verify(mbl => mbl.Logout(), Times.Once); }
public async Task GetCameras_Success_Test() { // Arrange Mock <IDvtelMobileAdapter> mockMobile = new Mock <IDvtelMobileAdapter>(); mockMobile.SetupProperty(mbl => mbl.Cameras, new List <Camera> { new Camera { CanPlayback = true, CanRecord = true, Description = "Ptz Camera", Id = Guid.NewGuid(), IsAccessible = true, IsGhost = false, IsPTZEnabled = true, IsRecording = true, Name = "Dhua Ptz", SiteId = Guid.NewGuid() }, new Camera { CanPlayback = true, CanRecord = true, Description = "Other Camera", Id = Guid.NewGuid(), IsAccessible = true, IsGhost = false, IsPTZEnabled = false, IsRecording = true, Name = "Dhua", SiteId = Guid.NewGuid() } }); // Act DvtelMobileService srv = new DvtelMobileService(mockMobile.Object); List <Camera> cameras = await srv.GetCameras(); // Assert Assert.IsNotNull(cameras); Assert.AreEqual(2, cameras.Count); mockMobile.Verify(mbl => mbl.Authenticate(), Times.Once); mockMobile.Verify(mbl => mbl.Cameras, Times.Once); mockMobile.Verify(mbl => mbl.Logout(), Times.Once); }
public async Task StartLive_Sucess_Test() { // Arrange Mock <IDvtelMobileAdapter> mockMobile = new Mock <IDvtelMobileAdapter>(); mockMobile.Setup(mbl => mbl.StartLive(It.IsAny <Guid>(), "mjpeg")).ReturnsAsync("http://localhost:8081/live/test"); // Act DvtelMobileService srv = new DvtelMobileService(mockMobile.Object); Uri url = await srv.StartLive(Guid.NewGuid(), "mjpeg"); // Assert Assert.IsNotNull(url); Assert.AreEqual(Uri.UriSchemeHttp, url.Scheme); Assert.AreEqual("http://localhost:8081/live/test", url.AbsoluteUri); mockMobile.Verify(mbl => mbl.Authenticate(), Times.Once); mockMobile.Verify(mbl => mbl.Logout(), Times.Once); }