This commit is contained in:
@@ -4077,8 +4077,6 @@ namespace raven_integration
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
//TEXT
|
||||
//
|
||||
@@ -7162,7 +7160,151 @@ namespace raven_integration
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
//TAGS
|
||||
//
|
||||
#region TAG TESTS
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public async void TagFilterWorks()
|
||||
{
|
||||
|
||||
var TestName = "TagFilterWorks";
|
||||
var WidgetRunNameStart = Util.Uniquify(TestName);
|
||||
|
||||
List<long> InclusiveWidgetIdList = new List<long>();
|
||||
List<long> ExclusiveWidgetIdList = new List<long>();
|
||||
|
||||
//CREATE 4 TEST WIDGETS
|
||||
//two inclusive and two not inclusive
|
||||
|
||||
//first inclusive widget
|
||||
dynamic w = new JObject();
|
||||
w.name = Util.Uniquify(WidgetRunNameStart);
|
||||
//Tags
|
||||
dynamic InclusiveTagsArray = new JArray();
|
||||
InclusiveTagsArray.Add("red-tag-test");
|
||||
InclusiveTagsArray.Add("orange-tag-test");
|
||||
InclusiveTagsArray.Add("yellow-tag-test");
|
||||
InclusiveTagsArray.Add("green-tag-test");
|
||||
InclusiveTagsArray.Add("blue-tag-test");
|
||||
InclusiveTagsArray.Add("indigo-tag-test");
|
||||
InclusiveTagsArray.Add("violet-tag-test");
|
||||
w.tags = InclusiveTagsArray;
|
||||
|
||||
ApiResponse a = await Util.PostAsync("Widget", await Util.GetTokenAsync("manager", "l3tm3in"), w.ToString());
|
||||
Util.ValidateDataReturnResponseOk(a);
|
||||
InclusiveWidgetIdList.Add(a.ObjectResponse["data"]["id"].Value<long>());
|
||||
|
||||
//second inclusive widget
|
||||
w.name = Util.Uniquify(WidgetRunNameStart);
|
||||
|
||||
a = await Util.PostAsync("Widget", await Util.GetTokenAsync("manager", "l3tm3in"), w.ToString());
|
||||
Util.ValidateDataReturnResponseOk(a);
|
||||
InclusiveWidgetIdList.Add(a.ObjectResponse["data"]["id"].Value<long>());
|
||||
|
||||
//first exclusive widget
|
||||
w.name = Util.Uniquify(WidgetRunNameStart);
|
||||
//Tags
|
||||
dynamic ExclusiveTagsArray = new JArray();
|
||||
ExclusiveTagsArray.Add("crimson-tag-test");
|
||||
ExclusiveTagsArray.Add("amber-tag-test");
|
||||
ExclusiveTagsArray.Add("saffron-tag-test");
|
||||
ExclusiveTagsArray.Add("emerald-tag-test");
|
||||
ExclusiveTagsArray.Add("azure-tag-test");
|
||||
ExclusiveTagsArray.Add("red-tag-test");
|
||||
ExclusiveTagsArray.Add("blue-tag-test");
|
||||
ExclusiveTagsArray.Add("cobalt-tag-test");
|
||||
ExclusiveTagsArray.Add("magenta-tag-test");
|
||||
w.tags = ExclusiveTagsArray;//Missing green
|
||||
|
||||
a = await Util.PostAsync("Widget", await Util.GetTokenAsync("manager", "l3tm3in"), w.ToString());
|
||||
Util.ValidateDataReturnResponseOk(a);
|
||||
ExclusiveWidgetIdList.Add(a.ObjectResponse["data"]["id"].Value<long>());
|
||||
|
||||
//second exclusive widget
|
||||
w.name = Util.Uniquify(WidgetRunNameStart);
|
||||
w.active = false;
|
||||
|
||||
a = await Util.PostAsync("Widget", await Util.GetTokenAsync("manager", "l3tm3in"), w.ToString());
|
||||
Util.ValidateDataReturnResponseOk(a);
|
||||
ExclusiveWidgetIdList.Add(a.ObjectResponse["data"]["id"].Value<long>());
|
||||
|
||||
|
||||
//CREATE FILTER
|
||||
dynamic d = new JObject();
|
||||
d.name = Util.Uniquify(WidgetRunNameStart);
|
||||
// d.ownerId = 1L;
|
||||
d["public"] = true;
|
||||
d.listKey = "widget";
|
||||
|
||||
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 = OpStartsWith;
|
||||
DataFilterNameStart.value = WidgetRunNameStart;
|
||||
dfilter.Add(DataFilterNameStart);
|
||||
|
||||
//active test filter
|
||||
dynamic DataFilterActive = new JObject();
|
||||
DataFilterActive.fld = "tags";
|
||||
DataFilterActive.op = OpEquality;
|
||||
dynamic FilterTagsArray = new JArray();
|
||||
FilterTagsArray.Add("red-tag-test");
|
||||
FilterTagsArray.Add("green-tag-test");//green is the only one missing from the exclusive widget
|
||||
FilterTagsArray.Add("blue-tag-test");
|
||||
DataFilterActive.value = FilterTagsArray;
|
||||
dfilter.Add(DataFilterActive);
|
||||
|
||||
d.filter = dfilter.ToString();//it expects it to be a json string, not actual json
|
||||
|
||||
a = await Util.PostAsync("DataFilter", await Util.GetTokenAsync("BizAdminFull"), d.ToString());
|
||||
Util.ValidateDataReturnResponseOk(a);
|
||||
|
||||
long DataFilterId = a.ObjectResponse["data"]["id"].Value<long>();
|
||||
|
||||
//NOW FETCH WIDGET LIST WITH FILTER
|
||||
a = await Util.GetAsync($"Widget/listwidgets?Offset=0&Limit=999&DataFilterId={DataFilterId.ToString()}", await Util.GetTokenAsync("manager", "l3tm3in"));
|
||||
Util.ValidateDataReturnResponseOk(a);
|
||||
Util.ValidateHTTPStatusCode(a, 200);
|
||||
|
||||
//assert contains at least two records
|
||||
((JArray)a.ObjectResponse["data"]).Count.Should().BeGreaterThan(1);
|
||||
var v = ((JArray)a.ObjectResponse["data"]);
|
||||
List<long> IDInResultList = new List<long>();
|
||||
int InclusiveMatchCount = 0;
|
||||
int ExclusiveMatchCount = 0;
|
||||
foreach (JObject o in v)
|
||||
{
|
||||
if (InclusiveWidgetIdList.Contains(o["id"].Value<long>()))
|
||||
InclusiveMatchCount++;
|
||||
if (ExclusiveWidgetIdList.Contains(o["id"].Value<long>()))
|
||||
ExclusiveMatchCount++;
|
||||
}
|
||||
|
||||
InclusiveMatchCount.Should().Be(InclusiveWidgetIdList.Count);
|
||||
ExclusiveMatchCount.Should().Be(0);
|
||||
|
||||
//DELETE WIDGETS
|
||||
foreach (long l in InclusiveWidgetIdList)
|
||||
{
|
||||
a = await Util.DeleteAsync("Widget/" + l.ToString(), await Util.GetTokenAsync("BizAdminFull"));
|
||||
Util.ValidateHTTPStatusCode(a, 204);
|
||||
}
|
||||
|
||||
foreach (long l in ExclusiveWidgetIdList)
|
||||
{
|
||||
a = await Util.DeleteAsync("Widget/" + l.ToString(), await Util.GetTokenAsync("BizAdminFull"));
|
||||
Util.ValidateHTTPStatusCode(a, 204);
|
||||
}
|
||||
|
||||
//DELETE DATAFILTER
|
||||
a = await Util.DeleteAsync("DataFilter/" + DataFilterId.ToString(), await Util.GetTokenAsync("BizAdminFull"));
|
||||
Util.ValidateHTTPStatusCode(a, 204);
|
||||
}
|
||||
#endregion tag tests
|
||||
//==================================================
|
||||
|
||||
}//eoc
|
||||
|
||||
Reference in New Issue
Block a user