Ejemplo n.º 1
0
        public void TestDatesAndTimeRange()
        {
            var dates = new List <DateTime>()
            {
                new DateTime(2016, 5, 2),
                new DateTime(2016, 5, 3)
            };
            var restriction = new DateTimeRestriction()
            {
                Dates     = new List <DateTime>(dates),
                TimeStart = new DateTime(2016, 1, 1, 8, 4, 0), //2016-01-01 08:04:00
                Type      = DateTimeRestriction.RestrictionType.Allow
            };

            if (restriction.TimeStart == null)
            {
                Assert.Fail("Restriction.TimeStart is null");
            }
            restriction.TimeEnd = restriction.TimeStart.Value.AddMinutes(26);
            dates.ForEach(d => Assert.AreEqual(true, restriction.IsValid(d.AddHours(8).AddMinutes(4))));        //08:04:00
            dates.ForEach(d => Assert.AreEqual(true, restriction.IsValid(d.AddHours(8).AddMinutes(30))));       //08:30:00
            dates.ForEach(d => Assert.IsNull(restriction.IsValid(d.AddHours(8).AddMinutes(4).AddSeconds(-1)))); //08:03:59
            dates.ForEach(d => Assert.IsNull(restriction.IsValid(d.AddHours(8).AddMinutes(31))));               //08:31:00
            Assert.IsNull(restriction.IsValid(new DateTime(2015, 5, 7).AddHours(8).AddMinutes(4)));             //Test allowed time with non-matching date
        }
Ejemplo n.º 2
0
 public void Setup()
 {
     _restriction = new DateTimeRestriction()
     {
         DaysOfWeek = new List <DayOfWeek>()
         {
             DayOfWeek.Monday
         },
         TimeStart = new DateTime(2016, 4, 19, 8, 0, 0),
         TimeEnd   = new DateTime(2016, 4, 19, 10, 0, 0),
         Type      = Models.Domain.DateTimeRestriction.RestrictionType.Deny
     };
     _typeSetting = new TypeSetting()
     {
         ReservationEndTimeRestrictions = new RangeRestriction()
         {
             Restrictions = new List <DateTimeRestriction>()
             {
                 _restriction
             }
         }
     };
     _settingsMirror = new SettingsMirror()
     {
         MirroredImageStorageUrl = "Test",
         TypeSettings            = new Dictionary <Models.Domain.Type, TypeSetting>()
         {
             { Models.Domain.Type.Student, _typeSetting }
         }
     };
     _settingMirrorSerialized = JsonConvert.SerializeObject(_settingsMirror, new StringEnumConverter());
 }
Ejemplo n.º 3
0
        public void TestDates()
        {
            var dates = new List <DateTime>()
            {
                new DateTime(2016, 5, 2),
                new DateTime(2016, 5, 3)
            };
            var restriction = new DateTimeRestriction()
            {
                Dates = new List <DateTime>(dates),
                Type  = DateTimeRestriction.RestrictionType.Allow
            };

            dates.ForEach(d => Assert.AreEqual(true, restriction.IsValid(d)));
            Assert.IsNull(restriction.IsValid(new DateTime(2016, 5, 4)));
            restriction.Type = DateTimeRestriction.RestrictionType.Deny;
            dates.ForEach(d => Assert.AreEqual(false, restriction.IsValid(d)));
        }
Ejemplo n.º 4
0
        public void TestDayOfWeek()
        {
            var restriction = new DateTimeRestriction()
            {
                DaysOfWeek = new List <DayOfWeek>()
                {
                    DayOfWeek.Monday
                },
                Type = DateTimeRestriction.RestrictionType.Allow
            };
            var someMonday = new DateTime(2016, 5, 2);

            Assert.AreEqual(DayOfWeek.Monday, someMonday.DayOfWeek, "Test subject is not a monday, the test is not representative!");
            Assert.AreEqual(true, restriction.IsValid(someMonday));
            restriction.Type = DateTimeRestriction.RestrictionType.Deny;
            Assert.AreEqual(false, restriction.IsValid(someMonday));
            var someTuesday = someMonday.AddDays(1);

            Assert.IsNull(restriction.IsValid(someTuesday));
        }
Ejemplo n.º 5
0
        public void TestTime()
        {
            //Dates will only be valid when between 08:00:00 and 10:00:00.
            var restriction = new DateTimeRestriction()
            {
                TimeStart = new DateTime(2016, 5, 2, 8, 0, 0), //2016-05-02 08:00:00
                Type      = DateTimeRestriction.RestrictionType.Allow
            };

            if (restriction.TimeStart == null)
            {
                Assert.Fail("Restriction.TimeStart is null");
            }
            restriction.TimeEnd = restriction.TimeStart.Value.AddHours(2);          //Exactly two more hours than TimeStart
            var testDate = DateTime.Today.AddHours(8);                              //Today 08:00:00

            Assert.AreEqual(true, restriction.IsValid(testDate));                   //08:00:00 should be allowed
            Assert.AreEqual(true, restriction.IsValid(testDate.AddHours(2)));       //10:00:00 should be allowed
            Assert.IsNull(restriction.IsValid(testDate.AddMinutes(-1)));            //The restriction is not applicable for 07:59:00
            Assert.IsNull(restriction.IsValid(testDate.AddHours(2).AddSeconds(1))); //The restriction is not applicable for 10:00:01
            restriction.Type = DateTimeRestriction.RestrictionType.Deny;
            Assert.AreEqual(false, restriction.IsValid(testDate));                  //08:00:00 should be denied
            Assert.AreEqual(false, restriction.IsValid(testDate.AddHours(2)));      //10:00:00 should be denied
        }