-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRepositoryPattern
More file actions
228 lines (183 loc) · 5.85 KB
/
RepositoryPattern
File metadata and controls
228 lines (183 loc) · 5.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
// The Repository Pattern is a design pattern commonly used in C# applications to separate the data access logic from the business logic.
// This pattern aims to create a layer that isolates the database access, enabling a more modular, maintainable, and testable codebase.
// Here's a basic example to demonstrate how to implement the Repository Pattern in C#.
public class Product
{
public int Id { get; set; }
public string Name { get; set; }
public decimal Price { get; set; }
}
using System.Collections.Generic;
public interface IProductRepository
{
IEnumerable<Product> GetAll();
Product GetById(int id);
void Add(Product product);
void Update(Product product);
void Delete(int id);
}
using System.Collections.Generic;
using System.Linq;
using Microsoft.EntityFrameworkCore;
public class ProductRepository : IProductRepository
{
private readonly AppDbContext _context;
public ProductRepository(AppDbContext context)
{
_context = context;
}
public IEnumerable<Product> GetAll()
{
return _context.Products.ToList();
}
public Product GetById(int id)
{
return _context.Products.Find(id);
}
public void Add(Product product)
{
_context.Products.Add(product);
_context.SaveChanges();
}
public void Update(Product product)
{
_context.Products.Update(product);
_context.SaveChanges();
}
public void Delete(int id)
{
var product = _context.Products.Find(id);
if (product != null)
{
_context.Products.Remove(product);
_context.SaveChanges();
}
}
}
using Microsoft.EntityFrameworkCore;
public class AppDbContext : DbContext
{
public DbSet<Product> Products { get; set; }
public AppDbContext(DbContextOptions<AppDbContext> options) : base(options)
{
}
}
public void ConfigureServices(IServiceCollection services)
{
services.AddDbContext<AppDbContext>(options =>
options.UseSqlServer(Configuration.GetConnectionString("DefaultConnection")));
services.AddScoped<IProductRepository, ProductRepository>();
services.AddControllersWithViews();
}
using Microsoft.AspNetCore.Mvc;
using System.Collections.Generic;
public class ProductsController : Controller
{
private readonly IProductRepository _productRepository;
public ProductsController(IProductRepository productRepository)
{
_productRepository = productRepository;
}
public IActionResult Index()
{
IEnumerable<Product> products = _productRepository.GetAll();
return View(products);
}
public IActionResult Details(int id)
{
Product product = _productRepository.GetById(id);
if (product == null)
{
return NotFound();
}
return View(product);
}
// Add other actions for Create, Update, and Delete operations
}
///// setup unit tests /////
dotnet add package Microsoft.EntityFrameworkCore.InMemory
dotnet add package Moq
dotnet add package xunit
dotnet add package xunit.runner.visualstudio
dotnet add package Microsoft.NET.Test.Sdk
using System.Collections.Generic;
using System.Linq;
using Microsoft.EntityFrameworkCore;
using Moq;
using Xunit;
public class ProductRepositoryTests
{
private DbContextOptions<AppDbContext> _dbContextOptions;
public ProductRepositoryTests()
{
_dbContextOptions = new DbContextOptionsBuilder<AppDbContext>()
.UseInMemoryDatabase(databaseName: "TestDatabase")
.Options;
using (var context = new AppDbContext(_dbContextOptions))
{
context.Products.Add(new Product { Id = 1, Name = "Product1", Price = 10 });
context.Products.Add(new Product { Id = 2, Name = "Product2", Price = 20 });
context.SaveChanges();
}
}
[Fact]
public void GetAll_ReturnsAllProducts()
{
using (var context = new AppDbContext(_dbContextOptions))
{
var repository = new ProductRepository(context);
var products = repository.GetAll().ToList();
Assert.Equal(2, products.Count);
Assert.Equal("Product1", products[0].Name);
Assert.Equal("Product2", products[1].Name);
}
}
[Fact]
public void GetById_ReturnsCorrectProduct()
{
using (var context = new AppDbContext(_dbContextOptions))
{
var repository = new ProductRepository(context);
var product = repository.GetById(1);
Assert.NotNull(product);
Assert.Equal("Product1", product.Name);
}
}
[Fact]
public void Add_AddsProductToDatabase()
{
using (var context = new AppDbContext(_dbContextOptions))
{
var repository = new ProductRepository(context);
var newProduct = new Product { Id = 3, Name = "Product3", Price = 30 };
repository.Add(newProduct);
var product = repository.GetById(3);
Assert.NotNull(product);
Assert.Equal("Product3", product.Name);
}
}
[Fact]
public void Update_UpdatesExistingProduct()
{
using (var context = new AppDbContext(_dbContextOptions))
{
var repository = new ProductRepository(context);
var product = repository.GetById(1);
product.Name = "UpdatedProduct";
repository.Update(product);
var updatedProduct = repository.GetById(1);
Assert.Equal("UpdatedProduct", updatedProduct.Name);
}
}
[Fact]
public void Delete_RemovesProductFromDatabase()
{
using (var context = new AppDbContext(_dbContextOptions))
{
var repository = new ProductRepository(context);
repository.Delete(1);
var product = repository.GetById(1);
Assert.Null(product);
}
}
}