Skip to content

Commit 4e1282c

Browse files
committed
feat: add tests for data service generation
1 parent 62213c2 commit 4e1282c

File tree

8 files changed

+132
-27
lines changed

8 files changed

+132
-27
lines changed

devops/exclude-for-service.txt

-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
\LogoFX.Templates.Model\
21
.sln
32
.csproj

specs/LogoFX.Cli.Dotnet.Specs.Steps/AssertionHelper.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ internal static void AssertGeneratedCode(this GeneratedFolder structure)
2929
foreach (var file in structure.Files)
3030
{
3131
var filePath = Path.Combine(file.RootPath, file.Name);
32-
File.Exists(filePath).Should().BeTrue();
32+
File.Exists(filePath).Should().BeTrue($"File '{filePath}' not found.");
3333
if (file.Contents != Any)
3434
{
3535
var contents = File.ReadAllText(filePath);

specs/LogoFX.Cli.Dotnet.Specs.Steps/ModelGenerationSteps.cs

+3
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,9 @@ internal sealed class {entityName}Mapper
144144
145145
public I{entityName} MapTo{entityName}({entityName}Dto dto) =>
146146
_mapper.Map<I{entityName}>(dto);
147+
148+
public {entityName}Dto MapFrom{entityName}(I{entityName} model) =>
149+
_mapper.Map<{entityName}Dto>(model);
147150
}}
148151
}}")));
149152
structure.AssertGeneratedCode();

specs/LogoFX.Cli.Dotnet.Specs.Steps/ServiceGenerationSteps.cs

+112-1
Original file line numberDiff line numberDiff line change
@@ -255,8 +255,119 @@ public void RegisterModule(IDependencyRegistrator dependencyRegistrator)
255255
return container;
256256
}}
257257
}}
258-
}}"));
258+
}}")).WithFolder($"{solutionName}.Data.Real.Providers",
259+
r => r.WithFile($"{entityName}DataProvider.cs",
260+
$@"using System;
261+
using System.Collections.Generic;
262+
using {solutionName}.Data.Contracts.Dto;
263+
using {solutionName}.Data.Contracts.Providers;
264+
265+
namespace {solutionName}.Data.Real.Providers
266+
{{
267+
internal sealed class {entityName}DataProvider : I{entityName}DataProvider
268+
{{
269+
public IEnumerable<{entityName}Dto> GetItems()
270+
{{
271+
throw new NotImplementedException();
272+
}}
273+
274+
public bool DeleteItem(Guid id)
275+
{{
276+
throw new NotImplementedException();
277+
}}
278+
279+
public bool UpdateItem({entityName}Dto dto)
280+
{{
281+
throw new NotImplementedException();
282+
}}
283+
284+
public void CreateItem({entityName}Dto dto)
285+
{{
286+
throw new NotImplementedException();
287+
}}
288+
}}
289+
}}")).WithFolder($"{solutionName}.Model",
290+
r => r.WithFile($"{entityName}Service.cs",
291+
$@"using System.Collections.Generic;
292+
using System.Linq;
293+
using System.Threading.Tasks;
294+
using JetBrains.Annotations;
295+
using LogoFX.Client.Core;
296+
using LogoFX.Core;
297+
using {solutionName}.Data.Contracts.Providers;
298+
using {solutionName}.Model.Contracts;
299+
using {solutionName}.Model.Mappers;
300+
301+
namespace {solutionName}.Model
302+
{{
303+
[UsedImplicitly]
304+
internal sealed class {entityName}Service : NotifyPropertyChangedBase<{entityName}Service>, I{entityName}Service
305+
{{
306+
private readonly I{entityName}DataProvider _provider;
307+
private readonly {entityName}Mapper _mapper;
308+
309+
private readonly RangeObservableCollection<I{entityName}> _items =
310+
new RangeObservableCollection<I{entityName}>();
311+
312+
public {entityName}Service(I{entityName}DataProvider provider, {entityName}Mapper mapper)
313+
{{
314+
_provider = provider;
315+
_mapper = mapper;
316+
}}
317+
318+
private void GetItems()
319+
{{
320+
var items = _provider.GetItems().Select(_mapper.MapTo{entityName});
321+
_items.Clear();
322+
_items.AddRange(items);
323+
}}
324+
325+
IEnumerable<I{entityName}> I{entityName}Service.Items => _items;
326+
327+
Task I{entityName}Service.GetItems() => MethodRunner.RunAsync(GetItems);
328+
329+
Task<I{entityName}> I{entityName}Service.NewItem() => MethodRunner.RunWithResultAsync<I{entityName}>(() => new {entityName}());
330+
331+
Task I{entityName}Service.SaveItem(I{entityName} item) => MethodRunner.RunAsync(() =>
332+
{{
333+
var dto = _mapper.MapFrom{entityName}(item);
334+
335+
if (item.IsNew)
336+
{{
337+
_provider.CreateItem(dto);
338+
}}
339+
else
340+
{{
341+
_provider.UpdateItem(dto);
342+
}}
343+
}});
259344
345+
Task I{entityName}Service.DeleteItem(I{entityName} item) => MethodRunner.RunAsync(() =>
346+
{{
347+
_provider.DeleteItem(item.Id);
348+
_items.Remove(item);
349+
}});
350+
}}
351+
}}")).WithFolder($"{solutionName}.Model.Contracts",
352+
r => r.WithFile($"I{entityName}Service.cs",
353+
$@"using System.Collections.Generic;
354+
using System.Threading.Tasks;
355+
356+
namespace {solutionName}.Model.Contracts
357+
{{
358+
public interface I{entityName}Service
359+
{{
360+
IEnumerable<I{entityName}> Items {{ get; }}
361+
362+
Task GetItems();
363+
364+
Task<I{entityName}> NewItem();
365+
366+
Task SaveItem(I{entityName} item);
367+
368+
Task DeleteItem(I{entityName} item);
369+
}}
370+
}}"));
260371

261372
structure.AssertGeneratedCode();
262373
}

templates/LogoFX.Templates.Model.Entity/LogoFX.Templates.Model/Mappers/SampleModelMapper.cs

+3
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,8 @@ internal sealed class SampleModelMapper
1414

1515
public ISampleModel MapToSampleModel(SampleModelDto dto) =>
1616
_mapper.Map<ISampleModel>(dto);
17+
18+
public SampleModelDto MapFromSampleModel(ISampleModel model) =>
19+
_mapper.Map<SampleModelDto>(model);
1720
}
1821
}

templates/LogoFX.Templates.Service.Entity/LogoFX.Templates.Model/LogoFX.Templates.Model.csproj

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<TargetFramework>netstandard2.0</TargetFramework>
55
</PropertyGroup>
66

77
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
8-
<DefineConstants>TRACE;TEMPLATE</DefineConstants>
8+
<DefineConstants>TRACE;IN_PROJECT</DefineConstants>
99
</PropertyGroup>
1010

1111
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
1212
<DefineConstants>TRACE;IN_PROJECT</DefineConstants>
1313
</PropertyGroup>
1414

1515
<ItemGroup>
16+
<Compile Include="..\..\LogoFX.Templates.Model.Entity\LogoFX.Templates.Model\Mappers\SampleModelMapper.cs" Link="Mappers\SampleModelMapper.cs" />
1617
<Compile Include="..\..\LogoFX.Templates.Model.Entity\LogoFX.Templates.Model\SampleModel.cs" Link="SampleModel.cs" />
1718
<Compile Include="..\..\LogoFX.Templates.WPF\LogoFX.Templates.WPF.Model\AppModel.cs" Link="AppModel.cs" />
1819
<Compile Include="..\..\LogoFX.Templates.WPF\LogoFX.Templates.WPF.Model\MethodRunner.cs" Link="MethodRunner.cs" />

templates/LogoFX.Templates.Service.Entity/LogoFX.Templates.Model/Mappers/SampleModelMapper.cs

-12
This file was deleted.

templates/LogoFX.Templates.Service.Entity/LogoFX.Templates.Service.Entity.sln

+10-10
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 16
44
VisualStudioVersion = 16.0.30128.74
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LogoFX.Templates.Model", "LogoFX.Templates.Model\LogoFX.Templates.Model.csproj", "{73D69A09-BB0E-4D2D-9BC3-254400AE0472}"
7-
EndProject
86
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LogoFX.Templates.Model.Contracts", "LogoFX.Templates.Model.Contracts\LogoFX.Templates.Model.Contracts.csproj", "{3F02A427-7CDD-4FF6-AA46-EC2AE0808354}"
97
EndProject
108
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LogoFX.Templates.Data.Contracts.Providers", "LogoFX.Templates.Data.Contracts.Providers\LogoFX.Templates.Data.Contracts.Providers.csproj", "{FD452F9C-58E9-406A-9711-B0E3E01C35A1}"
@@ -21,6 +19,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LogoFX.Templates.Data.Fake.
2119
EndProject
2220
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LogoFX.Templates.Data.Real.Providers", "LogoFX.Templates.Data.Real.Providers\LogoFX.Templates.Data.Real.Providers.csproj", "{B69A1054-FEE3-45A2-9C17-09F83CBDE151}"
2321
EndProject
22+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LogoFX.Templates.Model", "LogoFX.Templates.Model\LogoFX.Templates.Model.csproj", "{3F75EE70-838B-492F-AE59-EBEA8707BA53}"
23+
EndProject
2424
Global
2525
GlobalSection(SolutionConfigurationPlatforms) = preSolution
2626
Debug|Any CPU = Debug|Any CPU
@@ -29,14 +29,6 @@ Global
2929
Release|Any CPU = Release|Any CPU
3030
EndGlobalSection
3131
GlobalSection(ProjectConfigurationPlatforms) = postSolution
32-
{73D69A09-BB0E-4D2D-9BC3-254400AE0472}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
33-
{73D69A09-BB0E-4D2D-9BC3-254400AE0472}.Debug|Any CPU.Build.0 = Debug|Any CPU
34-
{73D69A09-BB0E-4D2D-9BC3-254400AE0472}.DebugWithFake|Any CPU.ActiveCfg = Debug|Any CPU
35-
{73D69A09-BB0E-4D2D-9BC3-254400AE0472}.DebugWithFake|Any CPU.Build.0 = Debug|Any CPU
36-
{73D69A09-BB0E-4D2D-9BC3-254400AE0472}.DebugWithReal|Any CPU.ActiveCfg = Debug|Any CPU
37-
{73D69A09-BB0E-4D2D-9BC3-254400AE0472}.DebugWithReal|Any CPU.Build.0 = Debug|Any CPU
38-
{73D69A09-BB0E-4D2D-9BC3-254400AE0472}.Release|Any CPU.ActiveCfg = Release|Any CPU
39-
{73D69A09-BB0E-4D2D-9BC3-254400AE0472}.Release|Any CPU.Build.0 = Release|Any CPU
4032
{3F02A427-7CDD-4FF6-AA46-EC2AE0808354}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
4133
{3F02A427-7CDD-4FF6-AA46-EC2AE0808354}.Debug|Any CPU.Build.0 = Debug|Any CPU
4234
{3F02A427-7CDD-4FF6-AA46-EC2AE0808354}.DebugWithFake|Any CPU.ActiveCfg = Debug|Any CPU
@@ -101,6 +93,14 @@ Global
10193
{B69A1054-FEE3-45A2-9C17-09F83CBDE151}.DebugWithReal|Any CPU.Build.0 = DebugWithReal|Any CPU
10294
{B69A1054-FEE3-45A2-9C17-09F83CBDE151}.Release|Any CPU.ActiveCfg = Release|Any CPU
10395
{B69A1054-FEE3-45A2-9C17-09F83CBDE151}.Release|Any CPU.Build.0 = Release|Any CPU
96+
{3F75EE70-838B-492F-AE59-EBEA8707BA53}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
97+
{3F75EE70-838B-492F-AE59-EBEA8707BA53}.Debug|Any CPU.Build.0 = Debug|Any CPU
98+
{3F75EE70-838B-492F-AE59-EBEA8707BA53}.DebugWithFake|Any CPU.ActiveCfg = Debug|Any CPU
99+
{3F75EE70-838B-492F-AE59-EBEA8707BA53}.DebugWithFake|Any CPU.Build.0 = Debug|Any CPU
100+
{3F75EE70-838B-492F-AE59-EBEA8707BA53}.DebugWithReal|Any CPU.ActiveCfg = Debug|Any CPU
101+
{3F75EE70-838B-492F-AE59-EBEA8707BA53}.DebugWithReal|Any CPU.Build.0 = Debug|Any CPU
102+
{3F75EE70-838B-492F-AE59-EBEA8707BA53}.Release|Any CPU.ActiveCfg = Release|Any CPU
103+
{3F75EE70-838B-492F-AE59-EBEA8707BA53}.Release|Any CPU.Build.0 = Release|Any CPU
104104
EndGlobalSection
105105
GlobalSection(SolutionProperties) = preSolution
106106
HideSolutionNode = FALSE

0 commit comments

Comments
 (0)