forked from akkadotnet/akka.net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildIncremental.fsx
253 lines (212 loc) · 10.7 KB
/
buildIncremental.fsx
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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
#I @"tools/FAKE/tools"
#r "FakeLib.dll"
open System
open System.IO
open Fake
open Fake.Git
module IncrementalTests =
let akkaDefaultBranch = "dev"
type Supports =
| Windows
| Linux
| All
let (|IsRunnable|_|) name platform (csproj:string) =
let isSupported =
match platform with
| Windows _ -> isWindows
| Linux _ -> isLinux
| All _ -> true
if (csproj.Contains(name) && isSupported) then Some(name)
else None
let IsRunnable testProject =
match testProject with
| IsRunnable "Akka.API.Tests.csproj" Linux proj -> false
| _ -> true
let getUnitTestProjects() =
let allTestProjects = !! "./**/core/**/*.Tests.csproj"
++ "./**/contrib/**/*.Tests.csproj"
-- "./**/serializers/**/*Wire*.csproj"
allTestProjects
|> Seq.filter IsRunnable
let isBuildScript (file:string) =
match file with
| EndsWith "fsx" -> true
| EndsWith "ps1" -> true
| EndsWith "cmd" -> true
| EndsWith "sh" -> true
| _ -> false
let getHeadHashFor repositoryDir branch =
let _, msg, error = runGitCommand repositoryDir (sprintf "log --oneline -1 %s" branch)
if error <> "" then failwithf "git log --oneline failed: %s" error
let logMsg = msg |> Seq.head
let tmp =
logMsg.Split(' ')
|> Seq.head
|> fun s -> s.Split('m')
if tmp |> Array.length > 2 then tmp.[1].Substring(0,6) else tmp.[0].Substring(0,6)
let getBranchesFileDiff repositoryDir branch =
let _, msg, error = runGitCommand repositoryDir (sprintf "diff %s --name-status" branch)
if error <> "" then failwithf "diff %s --name-status failed: %s" branch error
msg
|> Seq.map (fun line ->
let a = line.Split('\t')
FileStatus.Parse a.[0],a.[1])
let getUpstreamRemote repositoryDir =
let _, msg, error = runGitCommand repositoryDir "remote add upstream https://github.com/akkadotnet/akka.net"
match error with
| "" -> log "added upstream remote"
| "fatal: remote upstream already exists." -> log "upstream remote already exists"
| _ -> failwithf "remote add upstream https://github.com/akkadotnet/akka.net failed: %s" error
let getUpdatedFiles() =
let srcDir = __SOURCE_DIRECTORY__
log "Adding upstream remote..."
getUpstreamRemote srcDir
log "Fetching upstream remote to compare HEAD file changes with..."
directRunGitCommandAndFail srcDir "fetch upstream"
getBranchesFileDiff srcDir (sprintf "upstream/%s" akkaDefaultBranch)
|> Seq.map (fun (_, fi) -> FullName fi)
|> Seq.filter (fun fi -> (isInFolder (new DirectoryInfo("./src")) (new FileInfo(fi))) || (isBuildScript fi))
// Gather all of the folder paths that contain .csproj files
let getAllProjectFolders() =
!! "./src/**/*.csproj"
|> Seq.map (fun f -> DirectoryName (FullName f))
// Check if the altered file is inside of any of the folder paths that contain .csproj files
let isInProjectFolder projectFolder file =
isInFolder (new DirectoryInfo(projectFolder)) (new FileInfo(file))
type ProjectFileInclude = { projectFolder: string; file: string; contains: bool }
// Return a collection of all projectFolder, altered file, and true/false is contained within
let generateContainingProjFileCollection alteredFiles =
getAllProjectFolders()
|> Seq.map (fun p -> alteredFiles |> Seq.map (fun f -> { projectFolder = p; file = f; contains = isInProjectFolder p f }))
|> Seq.concat
// Find the .csproj file contained within a folder that contains an altered file
let findCsprojFilesForAlteredFiles fileProjectContainsSeq =
let findCsprojFileFor fileProjectContains =
//let projectFolder, file, contains = fileProjectContains
match fileProjectContains.contains with
| true -> Some(!! (fileProjectContains.projectFolder @@ "*.csproj") |> Seq.head)
| false -> None
fileProjectContainsSeq
|> Seq.map (fun x -> findCsprojFileFor x)
|> Seq.choose id
|> Seq.map (fun x -> filename x)
let getAssemblyForProject project =
try
!! ("src" @@ "**" @@ "bin" @@ "Release" @@ "net452" @@ fileNameWithoutExt project + ".dll")
|> Seq.head
with
| :? System.ArgumentException as ex ->
logf "Could not find built assembly for %s. Make sure project is built in Release config." (fileNameWithoutExt project);
reraise()
let getNetCoreAssemblyForProject project =
try
!! ("src" @@ "**" @@ "bin" @@ "Release" @@ "netcoreapp1.1" @@ fileNameWithoutExt project + ".dll")
|> Seq.head
with
| :? System.ArgumentException as ex ->
logfn "Could not find built assembly for %s. Make sure project is built in Release config." (fileNameWithoutExt project);
null
//--------------------------------------------------------------------------------
// MultiNodeTestRunner incremental test selection
//--------------------------------------------------------------------------------
let getMntrProjects() =
!! "./src/**/*Tests.MultiNode.csproj"
|> Seq.map (fun x -> x.ToString())
let getAllMntrTestAssemblies() = // if we're not running incremental tests
getMntrProjects()
|> Seq.map (fun x -> getAssemblyForProject x)
let getAllMntrTestNetCoreAssemblies() = // if we're not running incremental tests
getMntrProjects()
|> Seq.map (fun x -> getNetCoreAssemblyForProject x)
//--------------------------------------------------------------------------------
// Performance tests incremental test selection
//--------------------------------------------------------------------------------
let getPerfTestProjects() =
!! "./src/**/*Tests.Performance.csproj"
|> Seq.map (fun x -> x.ToString())
let getAllPerfTestAssemblies() = //if we're not running incremental tests
getPerfTestProjects()
|> Seq.map (fun x -> getAssemblyForProject x)
//--------------------------------------------------------------------------------
// Recursive dependency search
//--------------------------------------------------------------------------------
type ProjectPath = { projectName: string; projectPath: string }
type ProjectDetails = { parentProject: ProjectPath; dependencies: ProjectPath seq; isTestProject: bool }
let FullNameLinux baseProj csprojRef =
let csprojRef = normalizePath csprojRef
let mutable workingDirPath = DirectoryName baseProj
let csprojRefParts = split '/' csprojRef
let rootPath =
csprojRefParts
|> List.filter (fun x -> x = "..")
|> List.iter (fun x -> workingDirPath <- (DirectoryName workingDirPath))
workingDirPath
let subPath =
csprojRefParts
|> List.filter (fun x -> not (x = ".."))
|> List.reduce (@@)
rootPath @@ subPath
let getDependentProjectFilePath baseProj csprojRef =
match isWindows with
| true -> FullName csprojRef
| _ -> FullNameLinux baseProj csprojRef
let getDependentProjects csprojFile =
XMLRead true csprojFile "" "" "//Project/ItemGroup/ProjectReference/@Include"
|> Seq.map (fun p -> { projectName = filename (normalizePath p); projectPath = getDependentProjectFilePath csprojFile p })
type TestMode =
| Unit
| MNTR
| Perf
let isTestProject csproj testMode =
match testMode with
| Unit -> (filename csproj).Contains("Tests.csproj")
| MNTR -> (filename csproj).Contains("Tests.MultiNode.csproj")
| Perf -> (filename csproj).Contains("Tests.Performance.csproj")
let getAllProjectDependencies testMode =
!! "./src/**/*.csproj"
|> Seq.map (fun f -> { parentProject = { projectName = filename f; projectPath = f }; dependencies = getDependentProjects f; isTestProject = isTestProject f testMode })
let rec findTestProjectsThatHaveDependencyOn project testMode =
let allProjects = getAllProjectDependencies testMode
seq { for proj in allProjects do
for dep in proj.dependencies do
if (proj.parentProject.projectName = project && proj.isTestProject) then
// if the altered project is a test project (e.g. Akka.Tests)
yield proj;
if (dep.projectName = project && proj.isTestProject) then
//logfn "%s references %s and is a test project..." proj.parentProject.projectName project
yield proj
elif (dep.projectName = project && not proj.isTestProject) then
//logfn "%s references %s but is not a test project..." proj.parentProject.projectName project
yield! findTestProjectsThatHaveDependencyOn proj.parentProject.projectName testMode }
let getIncrementalTestProjects2 testMode =
logfn "Searching for incremental tests to run in %s test mode..." (testMode.ToString())
let updatedFiles = getUpdatedFiles()
log "The following files have been updated since forking from dev branch..."
updatedFiles |> Seq.iter (fun x -> logfn "\t%s" x)
log "The following test projects will be run..."
if (updatedFiles |> Seq.exists (fun p -> isBuildScript p)) then
log "Full test suite"
match testMode with
| Unit -> getUnitTestProjects()
| MNTR -> getMntrProjects()
| Perf -> getPerfTestProjects()
else
updatedFiles
|> generateContainingProjFileCollection
|> findCsprojFilesForAlteredFiles
|> Seq.map (fun p -> findTestProjectsThatHaveDependencyOn p testMode)
|> Seq.concat
|> Seq.map (fun p -> p.parentProject.projectPath)
|> Seq.distinct
|> Seq.filter IsRunnable
let getIncrementalUnitTests() =
getIncrementalTestProjects2 Unit
let getIncrementalMNTRTests() =
getIncrementalTestProjects2 MNTR
|> Seq.map (fun p -> getAssemblyForProject p)
let getIncrementalNetCoreMNTRTests() =
getIncrementalTestProjects2 MNTR
|> Seq.map (fun p -> getNetCoreAssemblyForProject p)
let getIncrementalPerfTests() =
getIncrementalTestProjects2 Perf
|> Seq.map (fun p -> getAssemblyForProject p)