This commit is contained in:
2020-02-03 23:21:21 +00:00
parent 1c950dd45a
commit 9a2ddc147f
2 changed files with 11 additions and 2 deletions

View File

@@ -2956,6 +2956,7 @@ same as the server does but in a central location here for all tests to use.
long DataFilterId = a.ObjectResponse["data"]["id"].Value<long>();
//NOW FETCH WIDGET LIST WITH FILTER
//" where (awidget.name Like 'DateTokenPast24HoursFilterWorks%') AND (awidget.startdate >'2020-02-02T22:55:31.0474690Z' AND awidget.startdate <'2020-02-03T22:55:31.0474696Z')"
a = await Util.GetAsync($"DataList/list?DataListKey=TestWidgetDataList&Offset=0&Limit=999&DataFilterId={DataFilterId.ToString()}", await Util.GetTokenAsync("manager", "l3tm3in"));
Util.ValidateDataReturnResponseOk(a);
Util.ValidateHTTPStatusCode(a, 200);

12
util.cs
View File

@@ -17,8 +17,16 @@ namespace raven_integration
//or the tests that cross dst / pst boundaries will fail
//See servers spec doc core-locale-currency-numbers-time-and-dates.txt for details
double TIME_ZONE_ADJUSTMENT = -8;// <---=== SET THIS TO SAME AS GENERATED DATA OFFSET AT SERVER
Double TimeZoneAdjustment = (TIME_ZONE_ADJUSTMENT) * -1;
return dtIn.AddHours(TimeZoneAdjustment).ToUniversalTime();
return DateTime.SpecifyKind(dtIn.AddHours(((TIME_ZONE_ADJUSTMENT) * -1)), DateTimeKind.Utc);
//above is just this but shorter:
// Double TimeZoneAdjustment = (TIME_ZONE_ADJUSTMENT) * -1;
// dtIn = dtIn.AddHours(TimeZoneAdjustment);
// DateTime other = DateTime.SpecifyKind(dtIn, DateTimeKind.Utc);
// return other;
}
}