commit 1ed7b433dbbd6708bd0dc8334395ec6208f7de54 Author: Tomasz Goluch Date: Sun Apr 9 12:48:18 2017 +0200 First commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..82c6dcd --- /dev/null +++ b/.gitignore @@ -0,0 +1,199 @@ +# Download this file using PowerShell v3 under Windows with the following comand: +# Invoke-WebRequest https://gist.githubusercontent.com/kmorcinek/2710267/raw/ -OutFile .gitignore +# or wget: +# wget --no-check-certificate http://gist.githubusercontent.com/kmorcinek/2710267/raw/.gitignore + +# User-specific files +*.suo +*.user +*.sln.docstates + +# Build results + +[Dd]ebug/ +[Rr]elease/ +x64/ +build/ +[Bb]in/ +[Oo]bj/ + +# NuGet Packages +*.nupkg +# The packages folder can be ignored because of Package Restore +**/packages/* +# except build/, which is used as an MSBuild target. +!**/packages/build/ +# Uncomment if necessary however generally it will be regenerated when needed +#!**/packages/repositories.config + +# MSTest test Results +[Tt]est[Rr]esult*/ +[Bb]uild[Ll]og.* + +*_i.c +*_p.c +*.ilk +*.meta +*.obj +*.pch +*.pdb +*.pgc +*.pgd +*.rsp +*.sbr +*.tlb +*.tli +*.tlh +*.tmp +*.tmp_proj +*.log +*.vspscc +*.vssscc +.builds +*.pidb +*.log +*.scc + +# OS generated files # +.DS_Store* +Icon? + +# Visual C++ cache files +ipch/ +*.aps +*.ncb +*.opensdf +*.sdf +*.cachefile + +# Visual Studio profiler +*.psess +*.vsp +*.vspx + +# Guidance Automation Toolkit +*.gpState + +# ReSharper is a .NET coding add-in +_ReSharper*/ +*.[Rr]e[Ss]harper + +# TeamCity is a build add-in +_TeamCity* + +# DotCover is a Code Coverage Tool +*.dotCover + +# NCrunch +*.ncrunch* +.*crunch*.local.xml + +# Installshield output folder +[Ee]xpress/ + +# DocProject is a documentation generator add-in +DocProject/buildhelp/ +DocProject/Help/*.HxT +DocProject/Help/*.HxC +DocProject/Help/*.hhc +DocProject/Help/*.hhk +DocProject/Help/*.hhp +DocProject/Help/Html2 +DocProject/Help/html + +# Click-Once directory +publish/ + +# Publish Web Output +*.Publish.xml + +# Windows Azure Build Output +csx +*.build.csdef + +# Windows Store app package directory +AppPackages/ + +# Others +*.Cache +ClientBin/ +[Ss]tyle[Cc]op.* +~$* +*~ +*.dbmdl +*.[Pp]ublish.xml +*.pfx +*.publishsettings +modulesbin/ +tempbin/ + +# EPiServer Site file (VPP) +AppData/ + +# RIA/Silverlight projects +Generated_Code/ + +# Backup & report files from converting an old project file to a newer +# Visual Studio version. Backup files are not needed, because we have git ;-) +_UpgradeReport_Files/ +Backup*/ +UpgradeLog*.XML +UpgradeLog*.htm + +# vim +*.txt~ +*.swp +*.swo + +# svn +.svn + +# Remainings from resolvings conflicts in Source Control +*.orig + +# SQL Server files +**/App_Data/*.mdf +**/App_Data/*.ldf +**/App_Data/*.sdf + + +#LightSwitch generated files +GeneratedArtifacts/ +_Pvt_Extensions/ +ModelManifest.xml + +# ========================= +# Windows detritus +# ========================= + +# Windows image file caches +Thumbs.db +ehthumbs.db + +# Folder config file +Desktop.ini + +# Recycle Bin used on file shares +$RECYCLE.BIN/ + +# Mac desktop service store files +.DS_Store + +# SASS Compiler cache +.sass-cache + +# Visual Studio 2014 CTP +**/*.sln.ide + +# Visual Studio temp something +.vs/ + +# VS 2015+ +*.vc.vc.opendb +*.vc.db + +**/node_modules/* + +##### +# End of core ignore list, below put you custom 'per project' settings (patterns or path) +##### \ No newline at end of file diff --git a/Blog.DAL.Tests/App.config b/Blog.DAL.Tests/App.config new file mode 100644 index 0000000..94dca8a --- /dev/null +++ b/Blog.DAL.Tests/App.config @@ -0,0 +1,22 @@ + + + +
+ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Blog.DAL.Tests/Blog.DAL.Tests.csproj b/Blog.DAL.Tests/Blog.DAL.Tests.csproj new file mode 100644 index 0000000..d377848 --- /dev/null +++ b/Blog.DAL.Tests/Blog.DAL.Tests.csproj @@ -0,0 +1,94 @@ + + + + Debug + AnyCPU + + + 2.0 + {C97FBBD5-7EAE-40A3-B748-729749FB73E2} + Library + Properties + Blog.DAL.Tests + Blog.DAL.Tests + v4.5.1 + 512 + {3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} + + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + false + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + false + + + + ..\packages\EntityFramework.6.1.3\lib\net45\EntityFramework.dll + True + + + ..\packages\EntityFramework.6.1.3\lib\net45\EntityFramework.SqlServer.dll + True + + + + + + + 3.5 + + + ..\DbTestHelpers\TDD.DbTestHelpers.dll + + + ..\DbTestHelpers\YamlDotNet.Core.dll + + + ..\DbTestHelpers\YamlDotNet.RepresentationModel.dll + + + + + False + + + + + + + + + {11A34EBA-0C94-44C4-9C53-1542F18EEFD2} + Blog.DAL + + + + + Designer + + + + + + + \ No newline at end of file diff --git a/Blog.DAL.Tests/Properties/AssemblyInfo.cs b/Blog.DAL.Tests/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..3b4c162 --- /dev/null +++ b/Blog.DAL.Tests/Properties/AssemblyInfo.cs @@ -0,0 +1,35 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("Blog.DAL.Tests")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Microsoft")] +[assembly: AssemblyProduct("Blog.DAL.Tests")] +[assembly: AssemblyCopyright("Copyright © Microsoft 2012")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("29e01d4d-73fd-4cfa-94c7-6bc4d1d34169")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/Blog.DAL.Tests/RepositoryTests.cs b/Blog.DAL.Tests/RepositoryTests.cs new file mode 100644 index 0000000..5ba2d99 --- /dev/null +++ b/Blog.DAL.Tests/RepositoryTests.cs @@ -0,0 +1,30 @@ +using System; +using System.Configuration; +using System.IO; +using System.Linq; +using System.Reflection; +using Blog.DAL.Infrastructure; +using Blog.DAL.Model; +using Blog.DAL.Repository; +using Microsoft.VisualStudio.TestTools.UnitTesting; +using System.Diagnostics; + +namespace Blog.DAL.Tests +{ + [TestClass] + public class RepositoryTests + { + [TestMethod] + public void GetAllPost_OnePostInDb_ReturnOnePost() + { + // arrange + var context = new BlogContext(); + context.Database.CreateIfNotExists(); + var repository = new BlogRepository(); + // act + var result = repository.GetAllPosts(); + // assert + Assert.AreEqual(1, result.Count()); + } + } +} diff --git a/Blog.DAL.Tests/packages.config b/Blog.DAL.Tests/packages.config new file mode 100644 index 0000000..6138937 --- /dev/null +++ b/Blog.DAL.Tests/packages.config @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/Blog.DAL/App.config b/Blog.DAL/App.config new file mode 100644 index 0000000..a6a2b7f --- /dev/null +++ b/Blog.DAL/App.config @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/Blog.DAL/Blog.DAL.csproj b/Blog.DAL/Blog.DAL.csproj new file mode 100644 index 0000000..6c2d47e --- /dev/null +++ b/Blog.DAL/Blog.DAL.csproj @@ -0,0 +1,71 @@ + + + + Debug + AnyCPU + 8.0.30703 + 2.0 + {11A34EBA-0C94-44C4-9C53-1542F18EEFD2} + Library + Properties + Blog.DAL + Blog.DAL + v4.5.1 + 512 + + + + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + false + + + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + false + + + + ..\packages\EntityFramework.6.1.3\lib\net45\EntityFramework.dll + True + + + ..\packages\EntityFramework.6.1.3\lib\net45\EntityFramework.SqlServer.dll + True + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Blog.DAL/Infrastructure/BlogContext.cs b/Blog.DAL/Infrastructure/BlogContext.cs new file mode 100644 index 0000000..e7a457e --- /dev/null +++ b/Blog.DAL/Infrastructure/BlogContext.cs @@ -0,0 +1,14 @@ +using System.Data.Entity; +using Blog.DAL.Model; + +namespace Blog.DAL.Infrastructure +{ + public class BlogContext : DbContext + { + public IDbSet Posts { get; set; } + + public BlogContext() : base("Blog") + { + } + } +} diff --git a/Blog.DAL/Model/Post.cs b/Blog.DAL/Model/Post.cs new file mode 100644 index 0000000..4ffdeb8 --- /dev/null +++ b/Blog.DAL/Model/Post.cs @@ -0,0 +1,14 @@ +using System.ComponentModel.DataAnnotations; + +namespace Blog.DAL.Model +{ + public class Post + { + [Key] + public long Id { get; set; } + + public string Content { get; set; } + + public string Author { get; set; } + } +} diff --git a/Blog.DAL/Properties/AssemblyInfo.cs b/Blog.DAL/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..f1c611b --- /dev/null +++ b/Blog.DAL/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("Blog.DAL")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Microsoft")] +[assembly: AssemblyProduct("Blog.DAL")] +[assembly: AssemblyCopyright("Copyright © Microsoft 2012")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("7d85ff1a-b9de-48fc-ab45-f93cbc1263b4")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/Blog.DAL/Repository/BlogRepository.cs b/Blog.DAL/Repository/BlogRepository.cs new file mode 100644 index 0000000..dc7c712 --- /dev/null +++ b/Blog.DAL/Repository/BlogRepository.cs @@ -0,0 +1,22 @@ +using System.Collections.Generic; +using Blog.DAL.Infrastructure; +using Blog.DAL.Model; +using System; + +namespace Blog.DAL.Repository +{ + public class BlogRepository + { + private readonly BlogContext _context; + + public BlogRepository() + { + _context = new BlogContext(); + } + + public IEnumerable GetAllPosts() + { + return _context.Posts; + } + } +} diff --git a/Blog.DAL/packages.config b/Blog.DAL/packages.config new file mode 100644 index 0000000..6138937 --- /dev/null +++ b/Blog.DAL/packages.config @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/Blog.sln b/Blog.sln new file mode 100644 index 0000000..40c9bfb --- /dev/null +++ b/Blog.sln @@ -0,0 +1,43 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 14 +VisualStudioVersion = 14.0.25420.1 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Blog.DAL", "Blog.DAL\Blog.DAL.csproj", "{11A34EBA-0C94-44C4-9C53-1542F18EEFD2}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Blog.DAL.Tests", "Blog.DAL.Tests\Blog.DAL.Tests.csproj", "{C97FBBD5-7EAE-40A3-B748-729749FB73E2}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{F9198EF6-6BD2-484E-8C9B-4EBD53548518}" + ProjectSection(SolutionItems) = preProject + Blog.vsmdi = Blog.vsmdi + Local.testsettings = Local.testsettings + TraceAndTestImpact.testsettings = TraceAndTestImpact.testsettings + EndProjectSection +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + TeamCity|Any CPU = TeamCity|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {11A34EBA-0C94-44C4-9C53-1542F18EEFD2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {11A34EBA-0C94-44C4-9C53-1542F18EEFD2}.Debug|Any CPU.Build.0 = Debug|Any CPU + {11A34EBA-0C94-44C4-9C53-1542F18EEFD2}.Release|Any CPU.ActiveCfg = Release|Any CPU + {11A34EBA-0C94-44C4-9C53-1542F18EEFD2}.Release|Any CPU.Build.0 = Release|Any CPU + {11A34EBA-0C94-44C4-9C53-1542F18EEFD2}.TeamCity|Any CPU.ActiveCfg = Release|Any CPU + {11A34EBA-0C94-44C4-9C53-1542F18EEFD2}.TeamCity|Any CPU.Build.0 = Release|Any CPU + {C97FBBD5-7EAE-40A3-B748-729749FB73E2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C97FBBD5-7EAE-40A3-B748-729749FB73E2}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C97FBBD5-7EAE-40A3-B748-729749FB73E2}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C97FBBD5-7EAE-40A3-B748-729749FB73E2}.Release|Any CPU.Build.0 = Release|Any CPU + {C97FBBD5-7EAE-40A3-B748-729749FB73E2}.TeamCity|Any CPU.ActiveCfg = Release|Any CPU + {C97FBBD5-7EAE-40A3-B748-729749FB73E2}.TeamCity|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(TestCaseManagementSettings) = postSolution + CategoryFile = Blog.vsmdi + EndGlobalSection +EndGlobal diff --git a/DbTestHelpers/TDD.DbTestHelpers.dll b/DbTestHelpers/TDD.DbTestHelpers.dll new file mode 100644 index 0000000..2c1d8c0 Binary files /dev/null and b/DbTestHelpers/TDD.DbTestHelpers.dll differ diff --git a/DbTestHelpers/YamlDotNet.Core.dll b/DbTestHelpers/YamlDotNet.Core.dll new file mode 100644 index 0000000..730fda6 Binary files /dev/null and b/DbTestHelpers/YamlDotNet.Core.dll differ diff --git a/DbTestHelpers/YamlDotNet.RepresentationModel.dll b/DbTestHelpers/YamlDotNet.RepresentationModel.dll new file mode 100644 index 0000000..15f6bbf Binary files /dev/null and b/DbTestHelpers/YamlDotNet.RepresentationModel.dll differ diff --git a/README.md b/README.md new file mode 100644 index 0000000..1d8ba76 --- /dev/null +++ b/README.md @@ -0,0 +1,8 @@ +# README # + +This README would normally document whatever steps are necessary to get your application up and running. + +### What is this repository for? ### + +* Blog - Aplikacja w C# + testy funkcjonalne bazy danych +* 1.0 \ No newline at end of file