using System; using Xunit; using Newtonsoft.Json.Linq; using System.Linq; using FluentAssertions; using System.Collections.Generic; namespace raven_integration { public class SearchOps { /// /// Test simple phrase only search is fundamentally working /// [Fact] public async void PhraseOnlySearchShouldReturnCorrectResultsInOrder() { const string TEST_SEARCH_PHRASE = "simple dogs"; //CREATE A WIDGET dynamic D = new JObject(); D.name = Util.Uniquify("Search Simple Test WIDGET"); D.dollarAmount = 1.11m; D.active = true; D.roles = 0; D.notes = "The quick brown and simple fox jumped over the six lazy dogs!"; ApiResponse a = await Util.PostAsync("Widget", await Util.GetTokenAsync("manager", "l3tm3in"), D.ToString()); Util.ValidateDataReturnResponseOk(a); long MatchFirstWidgetId = a.ObjectResponse["result"]["id"].Value(); //CREATE A SECOND WIDGET D = new JObject(); D.name = Util.Uniquify("Search simple as in dogs SECOND Test WIDGET"); D.dollarAmount = 1.11m; D.active = true; D.roles = 0; D.notes = "This Widget should be returned in the search as it contains both keywords in the name"; a = await Util.PostAsync("Widget", await Util.GetTokenAsync("manager", "l3tm3in"), D.ToString()); Util.ValidateDataReturnResponseOk(a); long MatchSecondWidgetId = a.ObjectResponse["result"]["id"].Value(); //CREATE A THIRD WIDGET D = new JObject(); D.name = Util.Uniquify("Search Simple THIRD Test WIDGET"); D.dollarAmount = 1.11m; D.active = true; D.roles = 0; D.notes = "This Widget should not be returned in the search as it only contains a single keyword in the name not both"; a = await Util.PostAsync("Widget", await Util.GetTokenAsync("manager", "l3tm3in"), D.ToString()); Util.ValidateDataReturnResponseOk(a); long NoMatchThirdWidgetId = a.ObjectResponse["result"]["id"].Value(); //CREATE A USER D = new JObject(); D.name = Util.Uniquify("Search simple Test User"); D.notes = "This user has the word dogs in its notes"; D.ownerId = 1L; D.active = true; D.login = Util.Uniquify("LOGIN"); D.password = Util.Uniquify("PASSWORD"); D.roles = 0;//norole D.localeId = 1;//random locale D.userType = 3;//non scheduleable a = await Util.PostAsync("User", await Util.GetTokenAsync("manager", "l3tm3in"), D.ToString()); Util.ValidateDataReturnResponseOk(a); long MatchUserId = a.ObjectResponse["result"]["id"].Value(); //Now see if can find those objects with a phrase search dynamic SearchParameters = new JObject(); SearchParameters.phrase = TEST_SEARCH_PHRASE; SearchParameters.nameOnly = false; SearchParameters.typeOnly = 0;//no type a = await Util.PostAsync("Search", await Util.GetTokenAsync("manager", "l3tm3in"), SearchParameters.ToString()); Util.ValidateDataReturnResponseOk(a); //Now validate the return list ((JArray)a.ObjectResponse["result"]).Count.Should().BeGreaterOrEqualTo(3); //Turn the list into an array of id's var v = ((JArray)a.ObjectResponse["result"]); List MatchingIdList = new List(); foreach (JObject j in v) { MatchingIdList.Add(j["id"].Value()); } MatchingIdList.Should().Contain(MatchFirstWidgetId, "ShouldContainFirstWidget"); MatchingIdList.Should().Contain(MatchSecondWidgetId, "ShouldContainSecondWidget"); MatchingIdList.Should().NotContain(NoMatchThirdWidgetId, "ShouldNotContainThirdWidget"); }//eot /// /// Test return grouping and sorting properly /// [Fact] public async void ResultsInCorrectOrderAndGrouping() { const string TEST_SEARCH_PHRASE = "mango ducky"; //CREATE A WIDGET dynamic D = new JObject(); D.name = Util.Uniquify("Search mango Test WIDGET"); D.dollarAmount = 1.11m; D.active = true; D.roles = 0; D.notes = "The quick brown and ducky fox jumped over the six lazy dogs!"; ApiResponse a = await Util.PostAsync("Widget", await Util.GetTokenAsync("manager", "l3tm3in"), D.ToString()); Util.ValidateDataReturnResponseOk(a); long MatchFirstWidgetId = a.ObjectResponse["result"]["id"].Value(); //CREATE A SECOND WIDGET D = new JObject(); D.name = Util.Uniquify("Search simple as in dogs SECOND Test WIDGET"); D.dollarAmount = 1.11m; D.active = true; D.roles = 0; D.notes = "This Widget should be returned in the search as it contains both keywords in the name"; a = await Util.PostAsync("Widget", await Util.GetTokenAsync("manager", "l3tm3in"), D.ToString()); Util.ValidateDataReturnResponseOk(a); long MatchSecondWidgetId = a.ObjectResponse["result"]["id"].Value(); //CREATE A THIRD WIDGET D = new JObject(); D.name = Util.Uniquify("Search Simple THIRD Test WIDGET"); D.dollarAmount = 1.11m; D.active = true; D.roles = 0; D.notes = "This Widget should not be returned in the search as it only contains a single keyword in the name not both"; a = await Util.PostAsync("Widget", await Util.GetTokenAsync("manager", "l3tm3in"), D.ToString()); Util.ValidateDataReturnResponseOk(a); long NoMatchThirdWidgetId = a.ObjectResponse["result"]["id"].Value(); //Now see if can find that widget with a phrase search dynamic SearchParameters = new JObject(); SearchParameters.phrase = TEST_SEARCH_PHRASE; SearchParameters.nameOnly = false; SearchParameters.typeOnly = 0;//no type a = await Util.PostAsync("Search", await Util.GetTokenAsync("manager", "l3tm3in"), SearchParameters.ToString()); Util.ValidateDataReturnResponseOk(a); //Now validate the return list ((JArray)a.ObjectResponse["result"]).Count.Should().BeGreaterOrEqualTo(2); //Turn the list into an array of id's var v = ((JArray)a.ObjectResponse["result"]); List MatchingIdList = new List(); foreach (JObject j in v) { MatchingIdList.Add(j["id"].Value()); } MatchingIdList.Should().Contain(MatchFirstWidgetId, "ShouldContainFirstWidget"); MatchingIdList.Should().Contain(MatchSecondWidgetId, "ShouldContainSecondWidget"); MatchingIdList.Should().NotContain(NoMatchThirdWidgetId, "ShouldNotContainThirdWidget"); }//eot // TODO: TEST RESULTS ARE RETURNED GROUPED (together) BY OBJECT TYPE THEN OBJECT ID DESCENDING //TODO: TEST THAT RIGHTS ARE WORKING PROPERLY WITH RETURNED RESULTS //NAME ONLY SEARCH SHOULD WORK WITH NO RIGHTS TO READ FULL RECORD //IF NO RIGHTS TO FULL READ AND SEARCH IS ON FULL OBJECT AND NOT NAME THEN IT SHOULD NOT RETURN THE RESULTS //TODO: TEST THAT NAME ONLY WORKS AS EXPECTED //TODO: TEST THAT NAME ONLY WORKS EVEN WITH NON-READ RIGHTS TO FULL OBJECT //TODO: WILDCARD SEARCH TEST //TODO: WILDCARD PLUS NON WILDCARD SEARCH TEST //TODO: TAG SEARCH ALONE TEST //TODO: TAG PLUS SEARCH PHRASE TEST //TODO: TAG PLUS REGULAR SEARCH PHRASE PLUS WILDCARD PHRASE TEST //TODO: TAG PLUS USER TEST OR MODIFY ALL OF THE ABOVE TO INCLUDE A USER INSTEAD OF A SECOND TEST WIDGET //================================================== }//eoc }//eons