/Oxite/Oxite.Tests/Repository/LinqToSqlRepositoryTests.cs

# · C# · 204 lines · 160 code · 36 blank · 8 comment · 2 complexity · 951ba5aeff815574711e01b3b3330473 MD5 · raw file

  1. // --------------------------------
  2. // Copyright (c) Microsoft Corporation. All rights reserved.
  3. // This source code is made available under the terms of the Microsoft Public License (Ms-PL)
  4. // http://www.codeplex.com/oxite/license
  5. // ---------------------------------
  6. using System;
  7. using System.Collections.Generic;
  8. using System.Linq;
  9. using Oxite.LinqToSqlDataProvider;
  10. using Oxite.Models;
  11. using Xunit;
  12. using Xunit.Extensions;
  13. namespace Oxite.Tests.Repository
  14. {
  15. // Note: All tests in this class actually hit a database and are therefore slow.
  16. // You need SQL Express to run these. Apologies to all those TDD people out there
  17. // but I want to make sure the Linq queries actually work when turned into SQL.
  18. public class LinqToSqlRepositoryTests : IUseFixture<LinqToSqlFixture>
  19. {
  20. private LinqToSqlFixture fixture;
  21. [Fact(Skip = "Slow database test")]
  22. public void GetPostsReturnsPosts()
  23. {
  24. PostRepository repo = new PostRepository(fixture.Context, new Site() { ID = Guid.Empty }, null);
  25. IQueryable<Post> allPosts = repo.GetPosts(false);
  26. IList<Post> postList = allPosts.ToList();
  27. Assert.NotNull(postList);
  28. Assert.Equal(1, postList.Count);
  29. }
  30. [Fact(Skip = "Slow database test")]
  31. public void GetPostsFilteredByTagReturnsPosts()
  32. {
  33. PostRepository repo = new PostRepository(fixture.Context, new Site() { ID = Guid.Empty }, null);
  34. IQueryable<Post> byTag = repo.GetPosts(new Tag() { Name = "Oxite" });
  35. IList<Post> postList = byTag.ToList();
  36. Assert.NotNull(postList);
  37. Assert.Equal(1, postList.Count);
  38. }
  39. [Fact(Skip = "Slow database test")]
  40. public void GetPostsFilteredByAreaReturnsPosts()
  41. {
  42. PostRepository repo = new PostRepository(fixture.Context, new Site() { ID = Guid.Empty }, null);
  43. IQueryable<Post> byArea = repo.GetPosts(new Area() { Name = "Blog" });
  44. IList<Post> postList = byArea.ToList();
  45. Assert.NotNull(postList);
  46. Assert.Equal(1, postList.Count);
  47. }
  48. [Fact(Skip = "Slow database test")]
  49. [AutoRollback]
  50. public void SavePostWithNewPost()
  51. {
  52. PostRepository repo = new PostRepository(fixture.Context, new Site() { ID = Guid.Empty }, null);
  53. Post newPost = new Post()
  54. {
  55. Area = new Area() { Name = "Blog" },
  56. Body = "Body",
  57. BodyShort = "BodyShort",
  58. Creator = new User() { Name = "Admin" },
  59. Slug = "Slug",
  60. State = EntityState.Normal,
  61. Tags = new[] { new Tag() { Name = "Oxite" }, new Tag() { Name = "Test"}},
  62. Title = "Title",
  63. };
  64. repo.Save(newPost);
  65. Post savedPost = repo.GetPost("Blog", "Slug");
  66. Assert.NotNull(savedPost);
  67. Assert.Equal("Blog", savedPost.Area.Name);
  68. Assert.Equal("Body", savedPost.Body);
  69. Assert.Equal("BodyShort", savedPost.BodyShort);
  70. Assert.Equal("Admin", savedPost.Creator.Name);
  71. Assert.Equal("Slug", savedPost.Slug);
  72. Assert.Equal(EntityState.Normal, savedPost.State);
  73. Assert.Equal(2, savedPost.Tags.Count);
  74. Assert.True(savedPost.Tags.Select(t => t.Name).Contains("Oxite"));
  75. Assert.True(savedPost.Tags.Select(t => t.Name).Contains("Test"));
  76. Assert.Equal("Title", savedPost.Title);
  77. }
  78. [Fact(Skip = "Slow database test")]
  79. [AutoRollback]
  80. public void SavePostUpdatePost()
  81. {
  82. PostRepository repo = new PostRepository(fixture.Context, new Site() { ID = Guid.Empty }, null);
  83. Post newPost = new Post()
  84. {
  85. ID = new Guid("0E1684CA-C627-4E87-9F21-843B074D9E4B"),
  86. Area = new Area() { Name = "Blog" },
  87. Body = "Body",
  88. BodyShort = "BodyShort",
  89. Creator = new User() { Name = "Admin" },
  90. Slug = "Slug",
  91. State = EntityState.Normal,
  92. Tags = new[] { new Tag() { Name = "Test" } },
  93. Title = "Title",
  94. };
  95. repo.Save(newPost);
  96. Post savedPost = repo.GetPost("Blog", "Slug");
  97. Assert.NotNull(savedPost);
  98. Assert.Equal("Blog", savedPost.Area.Name);
  99. Assert.Equal("Body", savedPost.Body);
  100. Assert.Equal("BodyShort", savedPost.BodyShort);
  101. Assert.Equal("Admin", savedPost.Creator.Name);
  102. Assert.Equal("Slug", savedPost.Slug);
  103. Assert.Equal(EntityState.Normal, savedPost.State);
  104. Assert.Equal(1, savedPost.Tags.Count);
  105. Assert.True(savedPost.Tags.Select(t => t.Name).Contains("Test"));
  106. Assert.Equal("Title", savedPost.Title);
  107. }
  108. [Fact(Skip = "Slow database test")]
  109. [AutoRollback]
  110. public void SaveCommentNewAnonComment()
  111. {
  112. PostRepository repo = new PostRepository(fixture.Context, new Site() { ID = Guid.Empty }, null);
  113. CommentRepository repo2 = new CommentRepository(fixture.Context, new Site() { ID = Guid.Empty }, null);
  114. Post existingPost = repo.GetPost("Blog", "Hello-World");
  115. Comment newComment = new Comment()
  116. {
  117. Body = "Body",
  118. Creator = new UserBase() { Email = "test@microsoft.com", HashedEmail = "XXXXXX", Name = "Test", Url = "http://microsoft.com" },
  119. CreatorIP = 1L,
  120. CreatorUserAgent = "UA",
  121. Language = new Language() { Name = "en" },
  122. State = EntityState.Normal
  123. };
  124. repo2.SaveComment(existingPost, newComment);
  125. Comment addedComment = repo2.GetComments(existingPost, false).Where(c => c.Body == "Body").FirstOrDefault();
  126. Assert.NotNull(addedComment);
  127. Assert.Equal("test@microsoft.com", addedComment.Creator.Email);
  128. Assert.Equal("XXXXXX", addedComment.Creator.HashedEmail);
  129. Assert.Equal("Test", addedComment.Creator.Name);
  130. Assert.Equal("http://microsoft.com", addedComment.Creator.Url);
  131. Assert.Equal(1L, addedComment.CreatorIP);
  132. Assert.Equal("UA", addedComment.CreatorUserAgent);
  133. Assert.Equal("en", addedComment.Language.Name);
  134. Assert.Equal(EntityState.Normal, addedComment.State);
  135. }
  136. [Fact(Skip = "Slow database test")]
  137. [AutoRollback]
  138. public void SaveCommentNewAuthedComment()
  139. {
  140. PostRepository repo = new PostRepository(fixture.Context, new Site() { ID = Guid.Empty }, null);
  141. CommentRepository repo2 = new CommentRepository(fixture.Context, new Site() { ID = Guid.Empty }, null);
  142. Post existingPost = repo.GetPost("Blog", "Hello-World");
  143. Comment newComment = new Comment()
  144. {
  145. Body = "Body",
  146. Creator = new User() { Name = "Admin" },
  147. CreatorIP = 1L,
  148. CreatorUserAgent = "UA",
  149. Language = new Language() { Name = "en" },
  150. State = EntityState.Normal
  151. };
  152. repo2.SaveComment(existingPost, newComment);
  153. Comment addedComment = repo2.GetComments(existingPost, false).Where(c => c.Body == "Body").FirstOrDefault();
  154. Assert.NotNull(addedComment);
  155. Assert.Equal("Oxite Administrator", addedComment.Creator.Name);
  156. Assert.Equal(1L, addedComment.CreatorIP);
  157. Assert.Equal("UA", addedComment.CreatorUserAgent);
  158. Assert.Equal("en", addedComment.Language.Name);
  159. Assert.Equal(EntityState.Normal, addedComment.State);
  160. }
  161. #region IUseFixture<LinqToSqlFixture> Members
  162. public void SetFixture(LinqToSqlFixture data)
  163. {
  164. this.fixture = data;
  165. }
  166. #endregion
  167. }
  168. }