Skip to content

Instantly share code, notes, and snippets.

View rafaeldalsenter's full-sized avatar
🚀

Rafael Dalsenter rafaeldalsenter

🚀
  • Brazil
View GitHub Profile
{
"ReRoutes": [...],
"Aggregates": [...],
"DelegatingHandlers": [
"BlackListHandler"
],
"GlobalConfiguration": {}
}
public class BlackListHandler : DelegatingHandler
{
protected override Task<HttpResponseMessage> SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
{
request.Headers.TryGetValues("CLIENT_ID", out var values);
var clientId = values?.FirstOrDefault();
if (clientId is null)
{
return ReturnBadRequest("Request bloqueada por falta de informações");
public string Title { get; private set; }
...
public void AddTitle(string title)
{
if (title.IsNullOrWhiteSpace())
{
AddError("Faltou preencher o valor 'title'");
return;
[Fact]
public void WithoutTitle_IsInvalid()
{
var domain = new NetflixTitleBuilder()
.WithCast("cast example")
.WithDescription("description example")
.WithId(Guid.NewGuid())
.Build();
Assert.False(domain.IsValid());
public async Task<DirectorsByCountryDto> GetDirectorsByCountry(string countryName)
{
...
try
{
var cqlQuery = @"select director as Name from netflix_titles where country=? allow filtering";
var returnQuery = await _cassandraContext.SelectAsync<string>(cqlQuery, countryName);
public async Task<NetflixTitleDto> Create(NetflixTitleDto dto)
{
try
{
dto.Id = Guid.NewGuid();
var netFlixTitleDomain = new NetflixTitleBuilder()
.WithTitle(dto.Title)
.WithDirector(dto.Director)
.WithCountry(dto.Country)
private ICreateNetflixTitleServices MockServiceForCreate()
{
var mockCassandraContext = new Mock<ICassandraContext>();
mockCassandraContext
.Setup(m => m.InsertAsync<NetflixTitle>(It.IsAny<NetflixTitle>()))
.Returns(() => Task.CompletedTask);
return new CreateNetflixTitleServices(mockCassandraContext.Object);
}
[Fact]
public async Task Create_DomainIsValid()
{
var dto = new NetflixTitleDto
{
Director = "director",
Country = "country",
DurationMin = 1,
Cast = "cast",
Title = "title"
def lambda_handler(event, context):
try:
print('Started the Lambda function')
bucketNameSource = event['bucket_name_source']
bucketNameDest = event['bucket_name_dest']
archiveNameDest = event['archive_name_dest']
archivePublicAccess = event['archive_public_access']
amountOfFilesToUpload = event['amount_of_files_to_upload']
print('Source Bucket:', bucketNameSource)
print('Target archive:', bucketNameDest + '/' + archiveNameDest)
objects = aws_ext.all_objects_from_bucket(bucketNameSource)
count_objects = aws_ext.count_objects(objects)
amount_objects = amountOfFilesToUpload
if(amount_objects == 0):
amount_objects = count_objects