forked from WSEI-csharp202/GradeBookApplication
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAddWeightedSupportToBaseGradeBook.cs
127 lines (108 loc) · 6.8 KB
/
AddWeightedSupportToBaseGradeBook.cs
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
using System;
using System.IO;
using System.Linq;
using GradeBook.GradeBooks;
using GradeBook.UserInterfaces;
using Xunit;
namespace GradeBookTests
{
public class AddWeightedSupportToBaseGradeBook
{
/// <summary>
/// All Tests related to the "Create IsWeighted Property" task.
/// </summary>
[Fact(DisplayName = "Create IsWeighted Property Test @add-isweighted-to-basegradebook")]
public void CreateIsWeightedTest()
{
var isWeightedProperty = typeof(BaseGradeBook).GetProperty("IsWeighted");
Assert.True(isWeightedProperty != null, "`GradeBook.GradeBooks.BaseGradeBook` does not contain an `IsWeighted` property.");
Assert.True(isWeightedProperty.GetGetMethod().IsPublic == true, "`GradeBook.GradeBooks.BaseGradeBook`'s `IsWeighted` property is not public.");
Assert.True(isWeightedProperty.PropertyType == typeof(bool), "`GradeBook.GradeBooks.BaseGradeBook`'s `IsWeighted` is not of type `bool`.");
}
[Fact(DisplayName = "Refactor GradeBooks and StartingUserInterface Test @refactor-to-support-isweighted")]
public void RefactorGradeBooksAndStartingUserInterface()
{
// Get the StandardGradeBook type
var standardGradeBook = TestHelpers.GetUserType("GradeBook.GradeBooks.StandardGradeBook");
Assert.True(standardGradeBook != null, "`StandardGradeBook` wasn't found in the `GradeBooks.GradeBook` namespace.");
// Get the StandardGradeBook's constructor
var constructor = standardGradeBook.GetConstructors().FirstOrDefault();
// Get the constructor's parameters
var parameters = constructor.GetParameters();
// Test that the parameters match what is expected at this point
Assert.True(parameters.Count() == 2 && parameters[0].ParameterType == typeof(string) && parameters[1].ParameterType == typeof(bool), "`GradeBook.GradeBooks.BaseGradeBook`'s constructor doesn't have the correct parameters. It should be a `string` and then a `bool`.");
// Note: this doesn't actually test that the refactor was done in all places, code won't compile otherwise once the bool is added to the constructor.
}
/// <summary>
/// All tests related to the "Set IsWeighted In BaseGradeBook Constructor" task.
/// </summary>
[Fact(DisplayName = "Set IsWeighted In BaseGradeBook Constructor Test @set-isweighted-property")]
public void SetIsWeightedInBaseGradeBookConstructorTest()
{
// get standardgradebook type
var standardGradeBook = TestHelpers.GetUserType("GradeBook.GradeBooks.StandardGradeBook");
Assert.True(standardGradeBook != null, "`StandardGradeBook` wasn't found in the `GradeBooks.GradeBook` namespace.");
// Instantiate StandardGradeBook with weighted grading
object gradeBook = Activator.CreateInstance(standardGradeBook, "WeightedTest", true);
// Assert that is weighted is true
Assert.True(gradeBook.GetType().GetProperty("IsWeighted").GetValue(gradeBook).ToString().ToLower() == "true", "`GradeBook.GradeBooks.BaseGradeBook`'s constructor didn't properly set the `IsWeighted` property based on the provided bool parameter");
}
/// <summary>
/// All Tests related to the "Update StartingUserInterface CreateCommand Method's Condition"
/// </summary>
[Fact(DisplayName = "Update StartingUserInterface CreateCommand Methods Condition @add-weighted-to-createcommand")]
public void UpdateStartingUserInterfacesCreateCommandMethodsCondition()
{
//Setup Test
var output = string.Empty;
try
{
using (var consoleInputStream = new StringReader("close"))
{
Console.SetIn(consoleInputStream);
using (var consolestream = new StringWriter())
{
Console.SetOut(consolestream);
StartingUserInterface.CreateCommand("create test standard");
output = consolestream.ToString().ToLower();
//Test that message written to console when parts.length != 4.
Assert.True(output.Contains("command not valid"), "`GradeBook.UserInterfaces.StartingUserInterface` didn't write a message to the console when the create command didn't contain a name, type, and if it was weighted (true / false).");
//Test that message written to console is correct.
Assert.True(output.Contains("command not valid, create requires a name, type of gradebook, if it's weighted (true / false)."), "`GradeBook.UserInterfaces.StartingUserInterface` didn't write 'Command not valid, Create requires a name, type of gradebook, if it's weighted (true / false)..' to the console when the create command didn't contain both a name and type.");
//Test that `CreateCommand` escapes returns without setting the gradebook when parts.Length != 4.
Assert.True(!output.Contains("created gradebook"), "`GradeBook.UserInterfaces.StartingUserInterface` still created a gradebook when the create command didn't contain a name, type, if it's weighted (true / false).");
}
}
}
finally
{
StreamWriter standardOutput = new StreamWriter(Console.OpenStandardOutput());
Console.SetOut(standardOutput);
StreamReader standardInput = new StreamReader(Console.OpenStandardInput());
Console.SetIn(standardInput);
}
output = string.Empty;
try
{
using (var consoleInputStream = new StringReader("close"))
{
Console.SetIn(consoleInputStream);
using (var consolestream = new StringWriter())
{
Console.SetOut(consolestream);
StartingUserInterface.CreateCommand("create test standard true");
output = consolestream.ToString().ToLower();
Assert.True(output.Contains("standard"), "`GradeBook.UserInterfaces.StartingUserInterface` didn't create a gradebook when the `CreateCommand` included a name, type, and if it was weighted (true / false).");
}
}
}
finally
{
StreamWriter standardOutput = new StreamWriter(Console.OpenStandardOutput());
Console.SetOut(standardOutput);
StreamReader standardInput = new StreamReader(Console.OpenStandardInput());
Console.SetIn(standardInput);
}
}
}
}