Basit Bir Test Framework Geliştirelim 4

2023-05-11

Assert sınıfını daha da geliştirelim. Şimdi, özel hata mesajları içeren Assert hata türleri ekleyelim. Bu, hataları daha iyi yönetmeyi ve test hatalarını daha iyi tanımlamayı sağlayacaktır.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;

public class AssertFailedException : Exception
{
    public AssertFailedException(string message) : base(message) { }
}

public class AssertEqualFailedException : AssertFailedException
{
    public AssertEqualFailedException(object expected, object actual)
        : base($"Expected: {expected}, Actual: {actual}") { }
}

public class AssertNotEqualFailedException : AssertFailedException
{
    public AssertNotEqualFailedException(object value)
        : base($"Unexpected value: {value}") { }
}

public class AssertTrueFailedException : AssertFailedException
{
    public AssertTrueFailedException() : base("Expected condition to be true, but was false.") { }
}

public class AssertFalseFailedException : AssertFailedException
{
    public AssertFalseFailedException() : base("Expected condition to be false, but was true.") { }
}

public class AssertContainsFailedException : AssertFailedException
{
    public AssertContainsFailedException(object item)
        : base($"Expected collection to contain {item}, but it did not.") { }
}

public class AssertDoesNotContainFailedException : AssertFailedException
{
    public AssertDoesNotContainFailedException(object item)
        : base($"Expected collection to not contain {item}, but it did.") { }
}

public class AssertAllFailedException : AssertFailedException
{
    public AssertAllFailedException() : base("Not all items in the collection satisfied the condition.") { }
}

public class AssertAnyFailedException : AssertFailedException
{
    public AssertAnyFailedException() : base("No item in the collection satisfied the condition.") { }
}

public class AssertEventuallyFailedException : AssertFailedException
{
    public AssertEventuallyFailedException(int timeoutMilliseconds)
        : base($"Condition was not satisfied within {timeoutMilliseconds} milliseconds.") { }
}

public static class Assert
{
    // ... metodlar ...

    public static void True(bool condition)
    {
        if (!condition)
        {
            throw new AssertTrueFailedException();
        }
    }

    public static void False(bool condition)
    {
        if (condition)
        {
            throw new AssertFalseFailedException();
        }
    }

    // ... diğer metodlar ...
}

Bu kodda, her bir Assert metodu için özel bir hata türü oluşturduk. Her hata türü, belirli bir Assert metodunun başarısız olmasının özelleştirilmiş bir açıklamasını içerir. Bu, hata mesajlarını daha anlamlı hale getirir ve belirli bir Assert metodunun neden başarısız olduğunu daha kolay anlamamızı sağlar.



Bu gibi daha fazla gönderi...

SemaphoreSlim Sınıfı: C#'ta Çoklu Görevlere Dayalı Programlama

2023-06-10 | #net #semaphoreslim

Genel Bakış SemaphoreSlim sınıfı, bir veya daha fazla threadin aynı anda belirli bir kaynağı veya işlemi kullanmasını kontrol etmek için C# ‘ta kullanılan bir yapıdır. SemaphoreSlim, aynı anda kaynağa erişebilecek thread sayısını sınırlar. SemaphoreSlim kullanımı, genellikle çok threadli uygulamalarda deadlock durumlarını önlemek ve belirli bir kaynağın aynı anda yalnızca bir veya daha fazla thread tarafından kullanılmasını sağlamak için kullanılır. SemaphoreSlim Kullanımı SemaphoreSlim sınıfı, aşağıdaki gibi kullanılır: SemaphoreSlim semaphoreSlim = new SemaphoreSlim(1, 1); Burada ilk parametre, aynı anda kaç threadin kaynağı kullanabileceğini belirler.

Devamı 


Basit Bir Rest Api Client Geliştirelim 9

2023-05-14 | #diy-rest-api-client #do-it-yourself #net #rest-api

HTTP isteklerini izlemek ve teşhis etmek için daha fazla yetenek ekleyerek, kütüphanemizi daha da geliştirebiliriz. Bu amaçla, isteklerin ve yanıtların bazı temel bilgilerini loga kaydeden bir middleware ekleyelim. Bu özellik, HTTP isteklerinin ve yanıtlarının kaydını tutmak için HttpClient‘in DelegatingHandler sınıfını kullanır. Bu, bir HTTP isteği gönderildiğinde ve bir yanıt alındığında çalışan bir kod parçasıdır. Bu durumda, HTTP isteklerinin ve yanıtlarının bazı temel bilgilerini loga kaydeder. Aşağıda, bu özelliği eklemek için gereken kod parçacığı bulunmaktadır:

Devamı 


Basit Bir Rest Api Client Geliştirelim 8

2023-05-12 | #diy-rest-api-client #do-it-yourself #net #rest-api

Bu noktada, geliştirmemiz gereken bir diğer önemli konu da güvenlikle ilgili olabilir. Özellikle, API çağrıları genellikle belirli bir kimlik doğrulama yöntemi gerektirir. Bunu sağlamak için, HTTP istemcimizi çok kullanılan iki kimlik doğrulama yöntemiyle, yani Basic Authentication ve Bearer (Token) Authentication ile uyumlu hale getirebiliriz. Bu amaçla, istemcimize iki yeni metot ekleyelim: public void SetBasicAuthentication(string username, string password) { var basicAuthValue = Convert.ToBase64String(Encoding.UTF8.GetBytes($"{username}:{password}")); SetDefaultHeader("Authorization", $"Basic {basicAuthValue}"); } public void SetBearerToken(string token) { SetDefaultHeader("Authorization", $"Bearer {token}"); } Bu metodlar, Authorization başlığını ayarlar, böylece her HTTP talebi kimlik doğrulama bilgilerini içerir.

Devamı 