модульное тестирование прикрепленного поведения wpf - PullRequest
7 голосов
/ 19 февраля 2010

Я все еще ворчу за присоединенное поведение в целом и затрудняюсь понять, как написать модульный тест для одного из них.

Я вставил приведенный ниже код из фреймворка Sacha Barber's Cinch, который позволяет закрывать окно с помощью прикрепленного поведения. Может кто-нибудь показать мне пример тестового модуля для него?

Спасибо!
Berryl

    #region Close

    /// <summary>Dependency property which holds the ICommand for the Close event</summary>
    public static readonly DependencyProperty CloseProperty =
        DependencyProperty.RegisterAttached("Close",
            typeof(ICommand), typeof(Lifetime),
                new UIPropertyMetadata(null, OnCloseEventInfoChanged));

    /// <summary>Attached Property getter to retrieve the CloseProperty ICommand</summary>
    public static ICommand GetClose(DependencyObject source)
    {
        return (ICommand)source.GetValue(CloseProperty);
    }

    /// <summary>Attached Property setter to change the CloseProperty ICommand</summary>
    public static void SetClose(DependencyObject source, ICommand command)
    {
        source.SetValue(CloseProperty, command);
    }

    /// <summary>This is the property changed handler for the Close property.</summary>
    private static void OnCloseEventInfoChanged(DependencyObject sender, DependencyPropertyChangedEventArgs e)
    {
        var win = sender as Window;
        if (win == null) return;

        win.Closing -= OnWindowClosing;
        win.Closed -= OnWindowClosed;

        if (e.NewValue == null) return;

        win.Closing += OnWindowClosing;
        win.Closed += OnWindowClosed;
    }

    /// <summary>
    /// This method is invoked when the Window.Closing event is raised.  
    /// It checks with the ICommand.CanExecute handler
    /// and cancels the event if the handler returns false.
    /// </summary>
    private static void OnWindowClosing(object sender, CancelEventArgs e)
    {
        var dpo = (DependencyObject)sender;
        var ic = GetClose(dpo);
        if (ic == null) return;

        e.Cancel = !ic.CanExecute(GetCommandParameter(dpo));
    }

    /// <summary>
    /// This method is invoked when the Window.Closed event is raised.  
    /// It executes the ICommand.Execute handler.
    /// </summary>
    static void OnWindowClosed(object sender, EventArgs e)
    {
        var dpo = (DependencyObject)sender;
        var ic = GetClose(dpo);
        if (ic == null) return;

        ic.Execute(GetCommandParameter(dpo));
    }

    #endregion

Ответы [ 2 ]

5 голосов
/ 19 февраля 2010

Вы, скорее всего, используете лямбду в вашем ICommand, используя DelegateCommand или RelayCommand. Множество реализаций их существует повсеместно, и у Cinch может быть что-то похожее. Действительно простая версия (например, не предназначена для производственного использования):

public class DelegateCommand : ICommand {
    private Action _execute = null;

    public void Execute( object parameter ) {
        _execute();
    }

    public DelegateCommand( Action execute ) {
        _execute = execute;
    }

    #region stuff that doesn't affect functionality
    public bool CanExecute( object parameter ) {
        return true;
    }
    public event EventHandler CanExecuteChanged {
        add { }
        remove { }
    }
    #endregion
}

Тогда ваше тестовое тело может выглядеть примерно так:

bool wascalled = false;

var execute = new DelegateCommand(
    () => {
        wascalled = true;
    } );

var window = new Window();
SomeClass.SetClose( window, execute );

// does the window need to be shown for Close() to work? Nope.

window.Close();

AssertIsTrue( wascalled );

Это слишком упрощенный пример. Конечно, вы захотите выполнить другие тесты, и в этом случае вам следует создать или найти более полную реализацию DelegateCommand, которая также правильно реализует CanExecute, среди прочего.

3 голосов
/ 19 февраля 2010

Изменение DependencyProperty и приведение значения сами по себе выглядит для меня как «Невозможные зависимости». Ссылка на Window делает вещи еще сложнее. Я думаю, я бы пошел с шаблоном Humble Object здесь ...

...