forked from aspnet/AspNetWebStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPreComputedGridDataSourceTest.cs
More file actions
44 lines (37 loc) · 1.39 KB
/
Copy pathPreComputedGridDataSourceTest.cs
File metadata and controls
44 lines (37 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.Linq;
using Microsoft.TestCommon;
using Moq;
namespace System.Web.Helpers.Test
{
public class PreComputedGridDataSourceTest
{
[Fact]
public void PreSortedDataSourceReturnsRowCountItWasSpecified()
{
// Arrange
int rows = 20;
var dataSource = new PreComputedGridDataSource(new WebGrid(GetContext()), values: Enumerable.Range(0, 10).Cast<dynamic>(), totalRows: rows);
// Act and Assert
Assert.Equal(rows, dataSource.TotalRowCount);
}
[Fact]
public void PreSortedDataSourceReturnsAllRows()
{
// Arrange
var grid = new WebGrid(GetContext());
var dataSource = new PreComputedGridDataSource(grid: grid, values: Enumerable.Range(0, 10).Cast<dynamic>(), totalRows: 10);
// Act
var rows = dataSource.GetRows(new SortInfo { SortColumn = String.Empty }, 0);
// Assert
Assert.Equal(10, rows.Count);
Assert.Equal(0, rows.First().Value);
Assert.Equal(9, rows.Last().Value);
}
private HttpContextBase GetContext()
{
return new Mock<HttpContextBase>().Object;
}
}
}