Ejemplo n.º 1
0
 public void TestImageCaptureAndStorage()
 {
     var context = new MyBigBroContext(Settings.Default.connectionString);
     var repository = new MyBigBroRepository();
     var location = new Location(repository);
     var geometry = new Geometry();
     repository.Context = context;
     location.MyBigBroRepository = repository;
     var pointInRangeOfWebCamId4Only = new Point { XCoord = 174.706, YCoord = -36.872 };
     if (location.IsPointWithinWebCamRadiusOfVisibility(pointInRangeOfWebCamId4Only))
     {
         var webCamControl = new WebCamControl(new AwsStorageServiceAgent(), repository, geometry);
         webCamControl.MyBigBroRepository = repository;
         webCamControl.StorageServiceAgent = new AwsStorageServiceAgent();
         var webCams = location.GetWebCamsWithinWebCamRadiusOfVisibility(pointInRangeOfWebCamId4Only);
         foreach (var webCam in webCams)
         {
             webCamControl.WebCam = webCam;
             webCamControl.WebCamImage = new WebCamImage();
             webCamControl.CapturedImage = new CapturedImage();
             webCamControl.CaptureCurrentImage(new WebCamDataRequest());
             webCamControl.StoreCapturedImage();
         }
     }
 }
Ejemplo n.º 2
0
        public void TestIsPointWithinWebCamRadiusOfVisibility()
        {
            //Arrange
            var pointInRangeOfId0Only = new Point { XCoord = 1, YCoord = 1 };
            var pointInRangeOfId2Only = new Point { XCoord = 9, YCoord = 9 };
            var pointInRangeOfId1AndId2 = new Point { XCoord = 4, YCoord = 4 };
            var pointNotInRange = new Point { XCoord = 100, YCoord = 100 };
            var mockRepository = new Mock<IMyBigBroRepository>();
            mockRepository.Setup(x => x.Set<global::Infostructure.MyBigBro.DataModel.Models.WebCam>()).Returns(new List<WebCam>()
            {
                new global::Infostructure.MyBigBro.DataModel.Models.WebCam() {Id = 0, Name = "bernard", XCoord = 2, YCoord = 2, RadiusOfVisibility = 3},
                new global::Infostructure.MyBigBro.DataModel.Models.WebCam() {Id = 2, Name = "bernard2", XCoord = 8, YCoord = 8, RadiusOfVisibility = 7}
            }.AsQueryable());
            var location = new Location(mockRepository.Object);

            //Act
            var pointInRangeOfId0OnlyResult = location.IsPointWithinWebCamRadiusOfVisibility(pointInRangeOfId0Only, false);
            var pointInRangeOfId2OnlyResult = location.IsPointWithinWebCamRadiusOfVisibility(pointInRangeOfId2Only, false);
            var pointInRangeOfId1AndId2Result = location.IsPointWithinWebCamRadiusOfVisibility(pointInRangeOfId1AndId2, false);
            var pointNotInRangeResult = location.IsPointWithinWebCamRadiusOfVisibility(pointNotInRange, false);

            //Assert
            Assert.IsTrue(pointInRangeOfId0OnlyResult);
            Assert.IsTrue(pointInRangeOfId2OnlyResult);
            Assert.IsTrue(pointInRangeOfId1AndId2Result);
            Assert.IsFalse(pointNotInRangeResult);
        }
Ejemplo n.º 3
0
        public void TestMapCapturedImageToGeoMarker()
        {
            //Arrange
            var location = new Location(myBigBroRepository.Object);

            //Act
            var result = location.MapCapturedImageToGeoMarker(1, 2);

            //Assert
            Assert.NotNull(result);
        }
Ejemplo n.º 4
0
        public void TestGetWebCams()
        {
            //Arrange
            string connectionString =
                //"Server=tcp:lcjoa99y8j.database.windows.net,1433;Database=bernardtest;User ID=bernardtest@lcjoa99y8j;Password=4Uckland;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;";
                Settings.Default.connectionString;
            var repository = new MyBigBroRepository() { Context = new MyBigBroContext(Settings.Default.connectionString) };
            var location = new Location(repository);

            //Act
            var webCams = location.GetWebCams();

            //Assert
            Assert.Greater(webCams.Count, 10);
        }
Ejemplo n.º 5
0
        public void TestIsPointWithinWebCamRadiusOfVisibility()
        {
            //Arrange
            var pointInRangeOfId0Only = new Point { XCoord = 1, YCoord = 1 };
            var pointInRangeOfId2Only = new Point { XCoord = 9, YCoord = 9 };
            var pointInRangeOfId1AndId2 = new Point { XCoord = 4, YCoord = 4 };
            var pointNotInRange = new Point { XCoord = 100, YCoord = 100 };
            var repository = new MyBigBroRepository() { Context = new MyBigBroContext(Settings.Default.connectionString) };
            var location = new Location(repository);

            //Act
            var pointInRangeOfId0OnlyResult = location.IsPointWithinWebCamRadiusOfVisibility(pointInRangeOfId0Only);
            var pointInRangeOfId2OnlyResult = location.IsPointWithinWebCamRadiusOfVisibility(pointInRangeOfId2Only);
            var pointInRangeOfId1AndId2Result = location.IsPointWithinWebCamRadiusOfVisibility(pointInRangeOfId1AndId2);
            var pointNotInRangeResult = location.IsPointWithinWebCamRadiusOfVisibility(pointNotInRange);

            //Assert
            Assert.IsTrue(pointInRangeOfId0OnlyResult);
            Assert.IsTrue(pointInRangeOfId2OnlyResult);
            Assert.IsTrue(pointInRangeOfId1AndId2Result);
            Assert.IsFalse(pointNotInRangeResult);
        }