This commit is contained in:
235
User/UserCrud.cs
235
User/UserCrud.cs
@@ -474,152 +474,155 @@ namespace raven_integration
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public async void UserPickListDefaultSortNoFilterWorks()
|
||||
{
|
||||
var RouteName = "User";//##########
|
||||
|
||||
//NOW FETCH LIST WITH FILTER
|
||||
ApiResponse a = await Util.GetAsync($"{RouteName}/picklist?Offset=0&Limit=999", await Util.GetTokenAsync("manager", "l3tm3in"));
|
||||
Util.ValidateDataReturnResponseOk(a);
|
||||
Util.ValidateHTTPStatusCode(a, 200);
|
||||
//DEPRECATED THESE BECAUSE THEY DON'T TEST ANYTHING UNIQUELY THAT ISN'T ALREADY COVERED BY THE DATALISTFILTER AND ORDER BY TESTS ELSEWHERE
|
||||
//AND THE PICKLIST IS NOW MINI FORMAT OF REGULAR LIST
|
||||
// /// <summary>
|
||||
// ///
|
||||
// /// </summary>
|
||||
// [Fact]
|
||||
// public async void UserPickListDefaultSortNoFilterWorks()
|
||||
// {
|
||||
// var RouteName = "User";//##########
|
||||
|
||||
//assert contains at least 3 records
|
||||
var ItemCount = ((JArray)a.ObjectResponse["data"]).Count;
|
||||
ItemCount.Should().BeGreaterOrEqualTo(3);
|
||||
// //NOW FETCH LIST WITH FILTER
|
||||
// ApiResponse a = await Util.GetAsync($"{RouteName}/picklist?Offset=0&Limit=999", await Util.GetTokenAsync("manager", "l3tm3in"));
|
||||
// Util.ValidateDataReturnResponseOk(a);
|
||||
// Util.ValidateHTTPStatusCode(a, 200);
|
||||
|
||||
var firstName = a.ObjectResponse["data"][0]["name"].Value<string>().Replace(" ", "");
|
||||
var secondName = a.ObjectResponse["data"][1]["name"].Value<string>().Replace(" ", "");
|
||||
int comparison = String.Compare(firstName, secondName, comparisonType: StringComparison.OrdinalIgnoreCase);
|
||||
comparison.Should().BeNegative();
|
||||
}
|
||||
// //assert contains at least 3 records
|
||||
// var ItemCount = ((JArray)a.ObjectResponse["data"]).Count;
|
||||
// ItemCount.Should().BeGreaterOrEqualTo(3);
|
||||
|
||||
// var firstName = a.ObjectResponse["data"][0]["name"].Value<string>().Replace(" ", "");
|
||||
// var secondName = a.ObjectResponse["data"][1]["name"].Value<string>().Replace(" ", "");
|
||||
// int comparison = String.Compare(firstName, secondName, comparisonType: StringComparison.OrdinalIgnoreCase);
|
||||
// comparison.Should().BeNegative();
|
||||
// }
|
||||
|
||||
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public async void UserPickListSortByFieldAscendingWorks()
|
||||
{
|
||||
// /// <summary>
|
||||
// ///
|
||||
// /// </summary>
|
||||
// [Fact]
|
||||
// public async void UserPickListSortByFieldAscendingWorks()
|
||||
// {
|
||||
|
||||
var NameStart = Util.Uniquify("UserPickListSortByFieldAscendingWorks");
|
||||
// var NameStart = Util.Uniquify("UserPickListSortByFieldAscendingWorks");
|
||||
|
||||
//CREATE 3 TEST objects TO TEST ORDER
|
||||
long FirstInOrderId = 0;
|
||||
long SecondInOrderId = 0;
|
||||
long ThirdInOrderId = 0;
|
||||
// //CREATE 3 TEST objects TO TEST ORDER
|
||||
// long FirstInOrderId = 0;
|
||||
// long SecondInOrderId = 0;
|
||||
// long ThirdInOrderId = 0;
|
||||
|
||||
dynamic d = new JObject();
|
||||
d.name = Util.Uniquify(NameStart);
|
||||
d.active = false;
|
||||
d.login = Util.Uniquify("LOGIN");
|
||||
d.password = Util.Uniquify("PASSWORD");
|
||||
d.roles = 0;//norole
|
||||
d.localeId = 1;//random locale
|
||||
d.userType = 3;//non scheduleable
|
||||
//Required by form custom rules
|
||||
d.notes = "notes";
|
||||
d.customFields = Util.UserRequiredCustomFieldsJsonString();
|
||||
// dynamic d = new JObject();
|
||||
// d.name = Util.Uniquify(NameStart);
|
||||
// d.active = false;
|
||||
// d.login = Util.Uniquify("LOGIN");
|
||||
// d.password = Util.Uniquify("PASSWORD");
|
||||
// d.roles = 0;//norole
|
||||
// d.localeId = 1;//random locale
|
||||
// d.userType = 3;//non scheduleable
|
||||
// //Required by form custom rules
|
||||
// d.notes = "notes";
|
||||
// d.customFields = Util.UserRequiredCustomFieldsJsonString();
|
||||
|
||||
|
||||
ApiResponse a = await Util.PostAsync("User", await Util.GetTokenAsync("manager", "l3tm3in"), d.ToString());
|
||||
Util.ValidateDataReturnResponseOk(a);
|
||||
ThirdInOrderId = a.ObjectResponse["data"]["id"].Value<long>();
|
||||
// ApiResponse a = await Util.PostAsync("User", await Util.GetTokenAsync("manager", "l3tm3in"), d.ToString());
|
||||
// Util.ValidateDataReturnResponseOk(a);
|
||||
// ThirdInOrderId = a.ObjectResponse["data"]["id"].Value<long>();
|
||||
|
||||
d = new JObject();
|
||||
d.name = Util.Uniquify(NameStart);
|
||||
d.active = true;
|
||||
d.login = Util.Uniquify("LOGIN");
|
||||
d.password = Util.Uniquify("PASSWORD");
|
||||
d.roles = 0;//norole
|
||||
d.localeId = 1;//random locale
|
||||
d.userType = 2;//non scheduleable
|
||||
//Required by form custom rules
|
||||
d.notes = "notes";
|
||||
d.customFields = Util.UserRequiredCustomFieldsJsonString();
|
||||
// d = new JObject();
|
||||
// d.name = Util.Uniquify(NameStart);
|
||||
// d.active = true;
|
||||
// d.login = Util.Uniquify("LOGIN");
|
||||
// d.password = Util.Uniquify("PASSWORD");
|
||||
// d.roles = 0;//norole
|
||||
// d.localeId = 1;//random locale
|
||||
// d.userType = 2;//non scheduleable
|
||||
// //Required by form custom rules
|
||||
// d.notes = "notes";
|
||||
// d.customFields = Util.UserRequiredCustomFieldsJsonString();
|
||||
|
||||
a = await Util.PostAsync("User", await Util.GetTokenAsync("manager", "l3tm3in"), d.ToString());
|
||||
Util.ValidateDataReturnResponseOk(a);
|
||||
SecondInOrderId = a.ObjectResponse["data"]["id"].Value<long>();
|
||||
// a = await Util.PostAsync("User", await Util.GetTokenAsync("manager", "l3tm3in"), d.ToString());
|
||||
// Util.ValidateDataReturnResponseOk(a);
|
||||
// SecondInOrderId = a.ObjectResponse["data"]["id"].Value<long>();
|
||||
|
||||
d = new JObject();
|
||||
d.name = Util.Uniquify(NameStart);
|
||||
d.active = false;
|
||||
d.login = Util.Uniquify("LOGIN");
|
||||
d.password = Util.Uniquify("PASSWORD");
|
||||
d.roles = 0;//norole
|
||||
d.localeId = 1;//random locale
|
||||
d.userType = 1;//non scheduleable
|
||||
//Required by form custom rules
|
||||
d.notes = "notes";
|
||||
d.customFields = Util.UserRequiredCustomFieldsJsonString();
|
||||
// d = new JObject();
|
||||
// d.name = Util.Uniquify(NameStart);
|
||||
// d.active = false;
|
||||
// d.login = Util.Uniquify("LOGIN");
|
||||
// d.password = Util.Uniquify("PASSWORD");
|
||||
// d.roles = 0;//norole
|
||||
// d.localeId = 1;//random locale
|
||||
// d.userType = 1;//non scheduleable
|
||||
// //Required by form custom rules
|
||||
// d.notes = "notes";
|
||||
// d.customFields = Util.UserRequiredCustomFieldsJsonString();
|
||||
|
||||
a = await Util.PostAsync("User", await Util.GetTokenAsync("manager", "l3tm3in"), d.ToString());
|
||||
Util.ValidateDataReturnResponseOk(a);
|
||||
FirstInOrderId = a.ObjectResponse["data"]["id"].Value<long>();
|
||||
// a = await Util.PostAsync("User", await Util.GetTokenAsync("manager", "l3tm3in"), d.ToString());
|
||||
// Util.ValidateDataReturnResponseOk(a);
|
||||
// FirstInOrderId = a.ObjectResponse["data"]["id"].Value<long>();
|
||||
|
||||
|
||||
//CREATE FILTER
|
||||
d = new JObject();
|
||||
d.name = Util.Uniquify(NameStart);
|
||||
d["public"] = true;
|
||||
d.listKey = "user";
|
||||
// //CREATE FILTER
|
||||
// d = new JObject();
|
||||
// d.name = Util.Uniquify(NameStart);
|
||||
// d["public"] = true;
|
||||
// d.listKey = "user";
|
||||
|
||||
//FILTER IN BY NAME FOR TESTING THIS RUN ONLY
|
||||
dynamic dfilter = new JArray();
|
||||
//name starts with filter to constrict to widgets that this test block created only
|
||||
dynamic DataFilterNameStart = new JObject();
|
||||
DataFilterNameStart.fld = "name";
|
||||
DataFilterNameStart.op = Util.OpStartsWith;
|
||||
DataFilterNameStart.value = NameStart;
|
||||
dfilter.Add(DataFilterNameStart);
|
||||
d.filter = dfilter.ToString();
|
||||
// //FILTER IN BY NAME FOR TESTING THIS RUN ONLY
|
||||
// dynamic dfilter = new JArray();
|
||||
// //name starts with filter to constrict to widgets that this test block created only
|
||||
// dynamic DataFilterNameStart = new JObject();
|
||||
// DataFilterNameStart.fld = "name";
|
||||
// DataFilterNameStart.op = Util.OpStartsWith;
|
||||
// DataFilterNameStart.value = NameStart;
|
||||
// dfilter.Add(DataFilterNameStart);
|
||||
// d.filter = dfilter.ToString();
|
||||
|
||||
//SORT ORDER ###################
|
||||
dynamic dsortarray = new JArray();
|
||||
dynamic dsort = new JObject();
|
||||
dsort.fld = "usertype";
|
||||
dsort.dir = "+";
|
||||
dsortarray.Add(dsort);
|
||||
d.sort = dsortarray.ToString();
|
||||
// //SORT ORDER ###################
|
||||
// dynamic dsortarray = new JArray();
|
||||
// dynamic dsort = new JObject();
|
||||
// dsort.fld = "usertype";
|
||||
// dsort.dir = "+";
|
||||
// dsortarray.Add(dsort);
|
||||
// d.sort = dsortarray.ToString();
|
||||
|
||||
a = await Util.PostAsync("DataListFilter", await Util.GetTokenAsync("manager", "l3tm3in"), d.ToString());
|
||||
Util.ValidateDataReturnResponseOk(a);
|
||||
// a = await Util.PostAsync("DataListFilter", await Util.GetTokenAsync("manager", "l3tm3in"), d.ToString());
|
||||
// Util.ValidateDataReturnResponseOk(a);
|
||||
|
||||
long DataFilterId = a.ObjectResponse["data"]["id"].Value<long>();
|
||||
// long DataFilterId = a.ObjectResponse["data"]["id"].Value<long>();
|
||||
|
||||
//NOW FETCH WIDGET LIST WITH FILTER
|
||||
a = await Util.GetAsync($"User/picklist?Offset=0&Limit=999&DataFilterId={DataFilterId.ToString()}", await Util.GetTokenAsync("manager", "l3tm3in"));
|
||||
Util.ValidateDataReturnResponseOk(a);
|
||||
Util.ValidateHTTPStatusCode(a, 200);
|
||||
// //NOW FETCH WIDGET LIST WITH FILTER
|
||||
// a = await Util.GetAsync($"User/picklist?Offset=0&Limit=999&DataFilterId={DataFilterId.ToString()}", await Util.GetTokenAsync("manager", "l3tm3in"));
|
||||
// Util.ValidateDataReturnResponseOk(a);
|
||||
// Util.ValidateHTTPStatusCode(a, 200);
|
||||
|
||||
//assert contains exactly 3 records
|
||||
((JArray)a.ObjectResponse["data"]).Count.Should().Be(3);
|
||||
// //assert contains exactly 3 records
|
||||
// ((JArray)a.ObjectResponse["data"]).Count.Should().Be(3);
|
||||
|
||||
//assert the order returned
|
||||
a.ObjectResponse["data"][0]["id"].Value<long>().Should().Be(FirstInOrderId);
|
||||
a.ObjectResponse["data"][1]["id"].Value<long>().Should().Be(SecondInOrderId);
|
||||
a.ObjectResponse["data"][2]["id"].Value<long>().Should().Be(ThirdInOrderId);
|
||||
// //assert the order returned
|
||||
// a.ObjectResponse["data"][0]["id"].Value<long>().Should().Be(FirstInOrderId);
|
||||
// a.ObjectResponse["data"][1]["id"].Value<long>().Should().Be(SecondInOrderId);
|
||||
// a.ObjectResponse["data"][2]["id"].Value<long>().Should().Be(ThirdInOrderId);
|
||||
|
||||
|
||||
a = await Util.DeleteAsync("User/" + FirstInOrderId.ToString(), await Util.GetTokenAsync("manager", "l3tm3in"));
|
||||
Util.ValidateHTTPStatusCode(a, 204);
|
||||
// a = await Util.DeleteAsync("User/" + FirstInOrderId.ToString(), await Util.GetTokenAsync("manager", "l3tm3in"));
|
||||
// Util.ValidateHTTPStatusCode(a, 204);
|
||||
|
||||
a = await Util.DeleteAsync("User/" + SecondInOrderId.ToString(), await Util.GetTokenAsync("manager", "l3tm3in"));
|
||||
Util.ValidateHTTPStatusCode(a, 204);
|
||||
// a = await Util.DeleteAsync("User/" + SecondInOrderId.ToString(), await Util.GetTokenAsync("manager", "l3tm3in"));
|
||||
// Util.ValidateHTTPStatusCode(a, 204);
|
||||
|
||||
a = await Util.DeleteAsync("User/" + ThirdInOrderId.ToString(), await Util.GetTokenAsync("manager", "l3tm3in"));
|
||||
Util.ValidateHTTPStatusCode(a, 204);
|
||||
// a = await Util.DeleteAsync("User/" + ThirdInOrderId.ToString(), await Util.GetTokenAsync("manager", "l3tm3in"));
|
||||
// Util.ValidateHTTPStatusCode(a, 204);
|
||||
|
||||
//DELETE DATAFILTER
|
||||
a = await Util.DeleteAsync("DataListFilter/" + DataFilterId.ToString(), await Util.GetTokenAsync("manager", "l3tm3in"));
|
||||
Util.ValidateHTTPStatusCode(a, 204);
|
||||
// //DELETE DATAFILTER
|
||||
// a = await Util.DeleteAsync("DataListFilter/" + DataFilterId.ToString(), await Util.GetTokenAsync("manager", "l3tm3in"));
|
||||
// Util.ValidateHTTPStatusCode(a, 204);
|
||||
|
||||
}
|
||||
// }
|
||||
|
||||
|
||||
//==================================================
|
||||
|
||||
Reference in New Issue
Block a user