Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add nulling tests #266

Draft
wants to merge 6 commits into
base: develop
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1223,6 +1223,188 @@ public void UpdateDeletedAndAddedDetailWithAggregatorTest()
});
}

/// <summary>
/// Test batch nulling object and delete master.
/// </summary>
[Fact]
public void BatchNullingAndDeleteTest()
{
ActODataService(args =>
{
string[] блохаPropertiesNames =
{
Information.ExtractPropertyPath<Блоха>(x => x.__PrimaryKey),
};
string[] медведьPropertiesNames =
{
Information.ExtractPropertyPath<Медведь>(x => x.__PrimaryKey),
};
var блохаDynamicView = new View(new ViewAttribute("блохаDynamicView", блохаPropertiesNames), typeof(Блоха));
var медведьDynamicView = new View(new ViewAttribute("медведьDynamicView", медведьPropertiesNames), typeof(Медведь));

var медведь = new Медведь();
var блоха = new Блоха() { МедведьОбитания = медведь };

var objs = new DataObject[] { медведь, блоха };
args.DataService.UpdateObjects(ref objs);

const string baseUrl = "http://localhost/odata";

string requestJsonDataБлоха = блоха.ToJson(блохаDynamicView, args.Token.Model);
DataObjectDictionary objJsonБлоха = DataObjectDictionary.Parse(requestJsonDataБлоха, блохаDynamicView, args.Token.Model);

objJsonБлоха.Add($"{nameof(Блоха.МедведьОбитания)}@odata.bind", null);

requestJsonDataБлоха = objJsonБлоха.Serialize();

медведь.SetStatus(ObjectStatus.Deleted);

string[] changesets = new[]
{
CreateChangeset(
$"{baseUrl}/{args.Token.Model.GetEdmEntitySet(typeof(Блоха)).Name}",
requestJsonDataБлоха,
блоха),
CreateChangeset(
$"{baseUrl}/{args.Token.Model.GetEdmEntitySet(typeof(Медведь)).Name}",
string.Empty,
медведь),
};

HttpRequestMessage batchRequest = CreateBatchRequest(baseUrl, changesets);
using (HttpResponseMessage response = args.HttpClient.SendAsync(batchRequest).Result)
{
args.DataService.LoadObject(блохаDynamicView, блоха);
var медведьОбитания = блоха.МедведьОбитания;

Assert.Null(медведьОбитания);

LoadingCustomizationStruct lcs = LoadingCustomizationStruct.GetSimpleStruct(typeof(Медведь), медведьDynamicView);
var медведи = args.DataService.LoadObjects(lcs);

Assert.Empty(медведи);
}
});
}

/// <summary>
/// Test batch delete master to self and nulling object.
/// </summary>
[Fact]
public void BatchDeleteAndNullingLinkToSelfTest()
{
ActODataService(args =>
{
string[] медведьPropertiesNames =
{
Information.ExtractPropertyPath<Медведь>(x => x.__PrimaryKey),
Information.ExtractPropertyPath<Медведь>(x => x.ЦветГлаз),
};
var медведьDynamicView = new View(new ViewAttribute("медведьDynamicView", медведьPropertiesNames), typeof(Медведь));

var testName = "Test";
var медведь1 = new Медведь();
var медведь2 = new Медведь() { Мама = медведь1, ЦветГлаз = testName };

var objs = new DataObject[] { медведь1, медведь2 };
args.DataService.UpdateObjects(ref objs);

const string baseUrl = "http://localhost/odata";

string requestJsonDataМедведь2 = медведь2.ToJson(медведьDynamicView, args.Token.Model);
DataObjectDictionary objJsonМедведь2 = DataObjectDictionary.Parse(requestJsonDataМедведь2, медведьDynamicView, args.Token.Model);

objJsonМедведь2.Add($"{nameof(Медведь.Мама)}@odata.bind", null);

requestJsonDataМедведь2 = objJsonМедведь2.Serialize();

медведь1.SetStatus(ObjectStatus.Deleted);

string[] changesets = new[]
{
CreateChangeset(
$"{baseUrl}/{args.Token.Model.GetEdmEntitySet(typeof(Медведь)).Name}",
requestJsonDataМедведь2,
медведь2),
CreateChangeset(
$"{baseUrl}/{args.Token.Model.GetEdmEntitySet(typeof(Медведь)).Name}",
string.Empty,
медведь1),
};

HttpRequestMessage batchRequest = CreateBatchRequest(baseUrl, changesets);
using (HttpResponseMessage response = args.HttpClient.SendAsync(batchRequest).Result)
{
LoadingCustomizationStruct lcs = LoadingCustomizationStruct.GetSimpleStruct(typeof(Медведь), медведьDynamicView);
var медведиObj = args.DataService.LoadObjects(lcs);
var медведи = медведиObj.Cast<Медведь>().ToList();

Assert.Single(медведиObj);
Assert.Equal(testName, медведи[0].ЦветГлаз);
Assert.Null(медведи[0].Мама);
}
});
}

/// <summary>
/// Test batch delete master to self and nulling object reverse order.
/// </summary>
[Fact]
public void BatchDeleteAndNullingLinkToSelfReverseTest()
{
ActODataService(args =>
{
string[] медведьPropertiesNames =
{
Information.ExtractPropertyPath<Медведь>(x => x.__PrimaryKey),
Information.ExtractPropertyPath<Медведь>(x => x.ЦветГлаз),
};
var медведьDynamicView = new View(new ViewAttribute("медведьDynamicView", медведьPropertiesNames), typeof(Медведь));

var testName = "Test";
var медведь1 = new Медведь();
var медведь2 = new Медведь() { Мама = медведь1, ЦветГлаз = testName };

var objs = new DataObject[] { медведь1, медведь2 };
args.DataService.UpdateObjects(ref objs);

const string baseUrl = "http://localhost/odata";

string requestJsonDataМедведь2 = медведь2.ToJson(медведьDynamicView, args.Token.Model);
DataObjectDictionary objJsonМедведь2 = DataObjectDictionary.Parse(requestJsonDataМедведь2, медведьDynamicView, args.Token.Model);

objJsonМедведь2.Add($"{nameof(Медведь.Мама)}@odata.bind", null);

requestJsonDataМедведь2 = objJsonМедведь2.Serialize();

медведь1.SetStatus(ObjectStatus.Deleted);

string[] changesets = new[]
{
CreateChangeset(
$"{baseUrl}/{args.Token.Model.GetEdmEntitySet(typeof(Медведь)).Name}",
string.Empty,
медведь1),
CreateChangeset(
$"{baseUrl}/{args.Token.Model.GetEdmEntitySet(typeof(Медведь)).Name}",
requestJsonDataМедведь2,
медведь2),
};

HttpRequestMessage batchRequest = CreateBatchRequest(baseUrl, changesets);
using (HttpResponseMessage response = args.HttpClient.SendAsync(batchRequest).Result)
{
LoadingCustomizationStruct lcs = LoadingCustomizationStruct.GetSimpleStruct(typeof(Медведь), медведьDynamicView);
var медведиObj = args.DataService.LoadObjects(lcs);
var медведи = медведиObj.Cast<Медведь>().ToList();

Assert.Single(медведиObj);
Assert.Equal(testName, медведи[0].ЦветГлаз);
Assert.Null(медведи[0].Мама);
}
});
}

/// <summary>
/// Test batch update error handling when business server throws exception.
/// </summary>
Expand Down