thomas
thomas
Explore posts from servers
CC#
Created by thomas on 4/3/2025 in #help
Unit Testing in Minimal Apis
Basically the issue here is that im not sure if this is even a unit test, because im effectively using an http client to hit my endpoints, there’s no mocking in place here. I feel like this is more of an integration test.
4 replies
CC#
Created by thomas on 4/3/2025 in #help
Unit Testing in Minimal Apis
c#
[Fact]
public async Task UpdatePost_OwnPost_ReturnsOk()
{
// Arrange
var (token, userId) = await factory.AuthenticateUser("updateuser1");
_client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", token);

var postId = await factory.CreateTestPost(userId, "Original Title", "Original body content");

var updateRequest = new UpdatePost.Request(
postId,
"Updated Title",
"Updated body content",
new Uri("https://example.com/updated.jpg")
);

// Act
var response = await _client.PutAsJsonAsync($"/api/posts/{postId}", updateRequest);

// Assert
response.StatusCode.Should().Be(HttpStatusCode.OK);
var result = await response.Content.ReadFromJsonAsync<UpdatePost.Response>(_jsonOptions);

result.Should().NotBeNull();
result.Id.Should().Be(postId);
result.Title.Should().Be(updateRequest.Title);

// Verify database was updated
using var scope = factory.Services.CreateScope();
var dbContext = scope.ServiceProvider.GetRequiredService<BlogDbContext>();
var updatedPost = await dbContext.Posts.FindAsync(postId);
updatedPost.Should().NotBeNull();
updatedPost.Title.Should().Be(updateRequest.Title);
updatedPost.Body.Should().Be(updateRequest.Body);
updatedPost.CoverImageUrl.Should().Be(updateRequest.CoverImageUrl);
updatedPost.UpdatedAtUtc.Should().NotBeNull();
}
c#
[Fact]
public async Task UpdatePost_OwnPost_ReturnsOk()
{
// Arrange
var (token, userId) = await factory.AuthenticateUser("updateuser1");
_client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", token);

var postId = await factory.CreateTestPost(userId, "Original Title", "Original body content");

var updateRequest = new UpdatePost.Request(
postId,
"Updated Title",
"Updated body content",
new Uri("https://example.com/updated.jpg")
);

// Act
var response = await _client.PutAsJsonAsync($"/api/posts/{postId}", updateRequest);

// Assert
response.StatusCode.Should().Be(HttpStatusCode.OK);
var result = await response.Content.ReadFromJsonAsync<UpdatePost.Response>(_jsonOptions);

result.Should().NotBeNull();
result.Id.Should().Be(postId);
result.Title.Should().Be(updateRequest.Title);

// Verify database was updated
using var scope = factory.Services.CreateScope();
var dbContext = scope.ServiceProvider.GetRequiredService<BlogDbContext>();
var updatedPost = await dbContext.Posts.FindAsync(postId);
updatedPost.Should().NotBeNull();
updatedPost.Title.Should().Be(updateRequest.Title);
updatedPost.Body.Should().Be(updateRequest.Body);
updatedPost.CoverImageUrl.Should().Be(updateRequest.CoverImageUrl);
updatedPost.UpdatedAtUtc.Should().NotBeNull();
}
This is what i've been doing my im not sure if it makes sense or not.
4 replies
CC#
Created by thomas on 4/3/2025 in #help
Unit Testing in Minimal Apis
How am i supposed to unit test something like this?
4 replies
CC#
Created by thomas on 4/1/2025 in #help
✅ Inconsistent accessibility: parameter type ''x" is less accessible than "y"
I need it for tests
17 replies
CC#
Created by thomas on 4/1/2025 in #help
✅ Inconsistent accessibility: parameter type ''x" is less accessible than "y"
kinda confused ab how should i've come up w that random public partial class lol
17 replies
CC#
Created by thomas on 4/1/2025 in #help
✅ Inconsistent accessibility: parameter type ''x" is less accessible than "y"
It works now
17 replies
CC#
Created by thomas on 4/1/2025 in #help
✅ Inconsistent accessibility: parameter type ''x" is less accessible than "y"
No description
17 replies
CC#
Created by thomas on 4/1/2025 in #help
✅ Inconsistent accessibility: parameter type ''x" is less accessible than "y"
im using top level statements
17 replies
CC#
Created by thomas on 8/23/2024 in #help
Kafka Flow (Producer Consumer arch.)
Now it works (as in it doesn't crash) but the service doesn't print anything
39 replies
CC#
Created by thomas on 8/23/2024 in #help
Kafka Flow (Producer Consumer arch.)
No description
39 replies
CC#
Created by thomas on 8/23/2024 in #help
Kafka Flow (Producer Consumer arch.)
n i wrote serializer
39 replies
CC#
Created by thomas on 8/23/2024 in #help
Kafka Flow (Producer Consumer arch.)
lol the issue is that i should use a deserializer in the consumer
39 replies
CC#
Created by thomas on 8/23/2024 in #help
Kafka Flow (Producer Consumer arch.)
No description
39 replies
CC#
Created by thomas on 8/23/2024 in #help
Kafka Flow (Producer Consumer arch.)
the issue then is just this
39 replies
CC#
Created by thomas on 8/23/2024 in #help
Kafka Flow (Producer Consumer arch.)
ok so the activation isn't needed
39 replies
CC#
Created by thomas on 8/23/2024 in #help
Kafka Flow (Producer Consumer arch.)
@canton7 Hope this will help, if you want i can also send the repository where all this is at.
39 replies
CC#
Created by thomas on 8/23/2024 in #help
Kafka Flow (Producer Consumer arch.)
No description
39 replies
CC#
Created by thomas on 8/23/2024 in #help
Kafka Flow (Producer Consumer arch.)
with this error right here
39 replies
CC#
Created by thomas on 8/23/2024 in #help
Kafka Flow (Producer Consumer arch.)
No description
39 replies