-
Notifications
You must be signed in to change notification settings - Fork 0
/
generate.ps1
219 lines (172 loc) · 5.53 KB
/
generate.ps1
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
# ------------------------
# .NET PROJECT GENERATION
# ------------------------
# Define the solution
Write-Host '------------------------------'
Write-Host ' PROJECT CONSOLE GENERATOR '
Write-Host '------------------------------'
Write-Host ''
Write-Host ''
Write-Host 'Enter the Solution name (ex. 678): ' -ForegroundColor Green
$solutionName = Read-Host '-> '
mkdir $solutionName
cd $solutionName
dotnet new sln --name $solutionName
# create a console project
Write-Host 'Enter the Project name (ex. ValidParenthesis): ' -ForegroundColor Yellow
$projectName = Read-Host '-> '
dotnet new console -o $projectName
# Add the project to the solution
Write-Host 'Adding the project into the solution... ' -ForegroundColor Blue
Write-Host ''
dotnet sln add $projectName/$projectName.csproj
# Create a test project
Write-Host ''
Write-Host 'Generating test project...' -ForegroundColor Yellow
Write-Host ''
$testProjectName = $projectName + 'Test'
dotnet new mstest -o $testProjectName
# Add the test project to the solution
Write-Host 'Adding the project test into the solution... ' -ForegroundColor Blue
Write-Host ''
dotnet sln add $testProjectName/$testProjectName.csproj
# Add a reference to the test project
Write-Host ''
Write-Host 'Adding the reference of the project into the project test... ' -ForegroundColor Blue
Write-Host ''
dotnet add $testProjectName/$testProjectName.csproj reference $projectName/$projectName.csproj
# ----------------------------------------
# ADD SIMPLE HELLO WORLD INTO THE PROJECT
# ----------------------------------------
Write-Host ''
Write-Host 'Adding Template code into the project...' -ForegroundColor DarkYellow
Write-Host ''
$code = @"
namespace $projectName
{
public class Program
{
public static string GetHelloWorld()
{
return `"Hello World!`";
}
public static void Main(string[] args)
{
string test = GetHelloWorld();
Console.WriteLine(test);
}
}
}
"@
$code | Out-File -FilePath $projectName/Program.cs
# --------------------------------
# ADD TESTS INTO THE TEST PROJECT
# --------------------------------
Write-Host 'Adding Template code into the project test...' -ForegroundColor DarkYellow
Write-Host ''
$testCode = @"
using Microsoft.VisualStudio.TestTools.UnitTesting;
using $projectName;
namespace $testProjectName;
[TestClass]
public class UnitTest1
{
[TestMethod]
public void TestHelloWorld()
{
// Arrange
//Program program = new Program();
// Act
string result = Program.GetHelloWorld();
// Assert
Assert.AreEqual("Hello World!", result);
}
}
"@
$testCode | Out-File -FilePath $testProjectName/UnitTest1.cs
# ------------
# RUN PROJECT
# ------------
Write-Host 'Running the project...' -ForegroundColor Magenta
Write-Host ''
$projectCsproj = $projectName + '.csproj'
dotnet run --project $projectName/$projectCsproj
# -------------
# RUN THE TESTS
# --------------
Write-Host ''
Write-Host 'Running the tests...' -ForegroundColor Magenta
Write-Host ''
$testProjectCsproj = $testProjectName + '.csproj'
dotnet test $testProjectName/$testProjectCsproj
# ===========================
# CREATING THE DOCUMENTATION
# ===========================
Write-Host ''
Write-Host 'Creating Documentation...' -ForegroundColor Cyan
Write-Host ''
$solutionNameYml = $solutionName + '.yml'
$readme = @"
# $solutionName
Level: ![Easy](https://img.shields.io/badge/Easy-lightgreen) | ![Medium](https://img.shields.io/badge/Medium-yellow) | ![Hard](https://img.shields.io/badge/Hard-red)
Language: C#
Topic:
Unit Tests: [![$solutionName - Testing Results](https://github.com/F4NT0/My-LeetCode-Solvings/actions/workflows/$solutionNameYml/badge.svg)](https://github.com/F4NT0/My-LeetCode-Solvings/actions/workflows/$solutionNameYml)
---
ADD HERE THE DESCRIPTION OF THE PROJECT AND EXAMPLES
"@
$readme | Out-File -FilePath README.md
$readme | Out-File -FilePath index.md
# ======================
# TEST SCRIPT CREATION
# ======================
Write-Host ''
Write-Host 'Creating Test Script...' -ForegroundColor Cyan
Write-Host ''
$testScript = @"
Write-Host 'Running the tests...' -ForegroundColor Magenta
Write-Host ''
dotnet test --nologo --logger "console;verbosity=detailed" .\$testProjectName\$testProjectCsproj
"@
$testScript | Out-File -FilePath test.ps1
# =========================
# GITHUB WORKFLOW CREATION
# =========================
cd ..
cd .\.github\workflows\
Write-Host ''
Write-Host 'Creating Github Workflow...' -ForegroundColor Cyan
Write-Host ''
$workflowScript = @"
name: $solutionName - Testing Results
on:
push:
paths:
- '$solutionName/**'
jobs:
build:
runs-on: windows-latest # For a list of available runner types, refer to
# https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
# Install the .NET Core workload
- name: Install .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
- name: Setup MSBuild.exe
uses: microsoft/setup-msbuild@v2
# Execute all unit tests in the solution
- name: Execute Unit Tests
run: dotnet test --nologo --logger "console;verbosity=detailed" .\$solutionName\$testProjectName\$testProjectCsproj
"@
$workflowScript | Out-File -FilePath $solutionNameYml
# --------------------
# BACK TO ROOT FOLDER
# -------------------
cd ..
cd ..