mirror of
https://github.com/chylex/.NET-Community-Toolkit.git
synced 2024-11-24 07:42:45 +01:00
157 lines
4.8 KiB
C#
157 lines
4.8 KiB
C#
// Licensed to the .NET Foundation under one or more agreements.
|
|
// The .NET Foundation licenses this file to you under the MIT license.
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
using System;
|
|
using System.Linq;
|
|
using CommunityToolkit.Mvvm.Collections;
|
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
|
|
namespace CommunityToolkit.Mvvm.UnitTests.Collections;
|
|
|
|
[TestClass]
|
|
public class Test_ObservableGroup
|
|
{
|
|
[TestMethod]
|
|
public void Test_ObservableGroup_Ctor_ShouldHaveExpectedState()
|
|
{
|
|
ObservableGroup<string, int> group = new("key");
|
|
|
|
Assert.AreEqual(group.Key, "key");
|
|
Assert.AreEqual(group.Count, 0);
|
|
}
|
|
|
|
[TestMethod]
|
|
public void Test_ObservableGroup_Ctor_WithGrouping_ShouldHaveExpectedState()
|
|
{
|
|
IntGroup source = new("key", new[] { 1, 2, 3 });
|
|
ObservableGroup<string, int> group = new(source);
|
|
|
|
Assert.AreEqual(group.Key, "key");
|
|
CollectionAssert.AreEqual(group, new[] { 1, 2, 3 });
|
|
}
|
|
|
|
[TestMethod]
|
|
public void Test_ObservableGroup_Ctor_WithCollection_ShouldHaveExpectedState()
|
|
{
|
|
int[] source = new[] { 1, 2, 3 };
|
|
ObservableGroup<string, int> group = new("key", source);
|
|
|
|
Assert.AreEqual(group.Key, "key");
|
|
CollectionAssert.AreEqual(group, new[] { 1, 2, 3 });
|
|
}
|
|
|
|
[TestMethod]
|
|
public void Test_ObservableGroup_Add_ShouldRaiseEvent()
|
|
{
|
|
bool collectionChangedEventRaised = false;
|
|
int[] source = new[] { 1, 2, 3 };
|
|
ObservableGroup<string, int> group = new("key", source);
|
|
|
|
group.CollectionChanged += (s, e) => collectionChangedEventRaised = true;
|
|
|
|
group.Add(4);
|
|
|
|
Assert.AreEqual(group.Key, "key");
|
|
CollectionAssert.AreEqual(group, new[] { 1, 2, 3, 4 });
|
|
Assert.IsTrue(collectionChangedEventRaised);
|
|
}
|
|
|
|
[TestMethod]
|
|
public void Test_ObservableGroup_Update_ShouldRaiseEvent()
|
|
{
|
|
bool collectionChangedEventRaised = false;
|
|
int[] source = new[] { 1, 2, 3 };
|
|
ObservableGroup<string, int> group = new("key", source);
|
|
|
|
group.CollectionChanged += (s, e) => collectionChangedEventRaised = true;
|
|
|
|
group[1] = 4;
|
|
|
|
Assert.AreEqual(group.Key, "key");
|
|
CollectionAssert.AreEqual(group, new[] { 1, 4, 3 });
|
|
Assert.IsTrue(collectionChangedEventRaised);
|
|
}
|
|
|
|
[TestMethod]
|
|
public void Test_ObservableGroup_Remove_ShouldRaiseEvent()
|
|
{
|
|
bool collectionChangedEventRaised = false;
|
|
int[] source = new[] { 1, 2, 3 };
|
|
ObservableGroup<string, int>? group = new("key", source);
|
|
|
|
group.CollectionChanged += (s, e) => collectionChangedEventRaised = true;
|
|
|
|
_ = group.Remove(1);
|
|
|
|
Assert.AreEqual(group.Key, "key");
|
|
CollectionAssert.AreEqual(group, new[] { 2, 3 });
|
|
Assert.IsTrue(collectionChangedEventRaised);
|
|
}
|
|
|
|
[TestMethod]
|
|
public void Test_ObservableGroup_Clear_ShouldRaiseEvent()
|
|
{
|
|
bool collectionChangedEventRaised = false;
|
|
int[] source = new[] { 1, 2, 3 };
|
|
ObservableGroup<string, int>? group = new("key", source);
|
|
|
|
group.CollectionChanged += (s, e) => collectionChangedEventRaised = true;
|
|
|
|
group.Clear();
|
|
|
|
Assert.AreEqual(group.Key, "key");
|
|
Assert.AreEqual(group.Count, 0);
|
|
Assert.IsTrue(collectionChangedEventRaised);
|
|
}
|
|
|
|
[TestMethod]
|
|
[DataRow(0)]
|
|
[DataRow(3)]
|
|
public void Test_ObservableGroup_IReadOnlyObservableGroup_ShouldReturnExpectedValues(int count)
|
|
{
|
|
ObservableGroup<string, int> group = new("key", Enumerable.Range(0, count));
|
|
IReadOnlyObservableGroup iReadOnlyObservableGroup = group;
|
|
|
|
Assert.AreEqual(iReadOnlyObservableGroup.Key, "key");
|
|
Assert.AreEqual(iReadOnlyObservableGroup.Count, count);
|
|
}
|
|
|
|
[TestMethod]
|
|
[ExpectedException(typeof(ArgumentNullException))]
|
|
public void Test_ObservableGroup_Ctor_NullKey()
|
|
{
|
|
_ = new ObservableGroup<string, int>((string)null!);
|
|
}
|
|
|
|
[TestMethod]
|
|
[ExpectedException(typeof(ArgumentNullException))]
|
|
public void Test_ObservableGroup_Ctor_NullGroup()
|
|
{
|
|
_ = new ObservableGroup<string, int>((IGrouping<string, int>)null!);
|
|
}
|
|
|
|
[TestMethod]
|
|
[ExpectedException(typeof(ArgumentNullException))]
|
|
public void Test_ObservableGroup_Ctor_NullKeyWithNotNullElements()
|
|
{
|
|
_ = new ObservableGroup<string, int>(null!, new int[0]);
|
|
}
|
|
|
|
[TestMethod]
|
|
[ExpectedException(typeof(ArgumentNullException))]
|
|
public void Test_ObservableGroup_Ctor_NotNullKeyWithNullElements()
|
|
{
|
|
_ = new ObservableGroup<string, int>("A", null!);
|
|
}
|
|
|
|
[TestMethod]
|
|
[ExpectedException(typeof(ArgumentNullException))]
|
|
public void Test_ObservableGroup_Ctor_NullKeySetter()
|
|
{
|
|
ObservableGroup<string, int> group = new("A");
|
|
|
|
group.Key = null!;
|
|
}
|
|
}
|