-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGitTestUtils.cs
207 lines (174 loc) · 7.86 KB
/
GitTestUtils.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
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
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using UnityEditor;
using UnityEngine;
namespace Abuksigun.UnityGitUI.Tests.Editor
{
public class GitTestUtils : MonoBehaviour
{
static System.Random random = new System.Random();
public static void AddLineToFile(string filePath, string newContent)
{
using (StreamWriter writer = new StreamWriter(filePath, append: true))
writer.Write(newContent);
}
public static void ModifyFile(string path, string addition, params int[] lines)
{
if (!File.Exists(path))
{
throw new FileNotFoundException($"The file at {path} does not exist.");
}
// Read all lines from the file.
var fileLines = File.ReadAllLines(path).ToList();
// Convert the array of line numbers to a HashSet for efficient look-up.
var linesToModify = new HashSet<int>(lines);
// Modify the specified lines.
for (int i = 0; i < fileLines.Count; i++)
{
if (linesToModify.Contains(i + 1)) // Adding 1 because line numbers are 1-based, but list indices are 0-based.
{
fileLines[i] += addition;
}
}
// Write the modified lines back to the file.
File.WriteAllLines(path, fileLines);
}
public static void ModifyRandomTextFiles(string repoName, string filePattern, int numberOfFiles, int linesPerFile, string addition)
{
string repoPath = GetRepoFullPath(repoName);
// Get all .txt files in the repository
var allTextFiles = Directory.GetFiles(repoPath, filePattern, SearchOption.AllDirectories).ToList();
if (allTextFiles.Count < numberOfFiles)
{
throw new ArgumentException("There are not enough .txt files in the repository to satisfy the requested number of files to modify.");
}
// Randomly select the files
var selectedFiles = allTextFiles.OrderBy(x => random.Next()).Take(numberOfFiles).ToList();
foreach (var file in selectedFiles)
{
ModifyRandomLinesInFile(file, linesPerFile, addition);
}
static void ModifyRandomLinesInFile(string filePath, int numberOfLines, string addition)
{
var fileLines = File.ReadAllLines(filePath).ToList();
if (fileLines.Count < numberOfLines)
{
throw new ArgumentException($"The file {filePath} does not have enough lines to modify the requested number of lines.");
}
// Randomly select line numbers to modify
var linesToModify = Enumerable.Range(1, fileLines.Count).OrderBy(x => random.Next()).Take(numberOfLines).ToList();
// Modify the selected lines
for (int i = 0; i < fileLines.Count; i++)
{
if (linesToModify.Contains(i + 1)) // Line numbers are 1-based.
{
fileLines[i] += addition;
}
}
// Write back to the file
File.WriteAllLines(filePath, fileLines);
}
}
public static string GetRepoGuid(string name)
{
var allPackages = UnityEditor.PackageManager.PackageInfo.GetAllRegisteredPackages();
var package = allPackages.First(x => Path.GetFileName(x.resolvedPath) == name);
return AssetDatabase.AssetPathToGUID(package.assetPath);
}
public static string CreateTestRemoteRepo(string name)
{
string remoteRepoDir = Path.Combine(Path.GetTempPath(), name);
Directory.CreateDirectory(remoteRepoDir);
Utils.RunCommand(remoteRepoDir, PluginSettingsProvider.GitPath, "init --bare");
return remoteRepoDir;
}
public static void DeleteTestRemoteRepo(string name)
{
string remoteRepoDir = Path.Combine(Path.GetTempPath(), name);
if (Directory.Exists(remoteRepoDir))
{
try
{
Directory.Delete(remoteRepoDir, true);
}
catch
{
// It fails sometimes, but it's not a big deal
}
}
}
public static void DeleteTestRepo(string name)
{
string packageRootDir = GetRepoFullPath(name);
if (Directory.Exists(packageRootDir))
{
try
{
Directory.Delete(packageRootDir, true);
}
catch
{
// It fails sometimes, but it's not a big deal
}
}
DeleteTestRemoteRepo(name);
}
private static string GetRepoFullPath(string name)
{
return Path.GetFullPath(Path.Combine(Application.dataPath, "..", "Packages", name));
}
public static void PopulateRepoWithFiles(string repoPath, string repoName)
{
void CreateFile(string filePath, string content)
{
using (StreamWriter writer = new StreamWriter(filePath))
writer.Write(content);
}
StringBuilder fileContent = new StringBuilder();
for (int line = 1; line <= 100; line++)
fileContent.AppendLine($"{line} {repoName}");
// Create 30 files of each type
for (int i = 1; i <= 30; i++)
{
// 1. Text file in root dir, named without spaces
string fileNameNoSpaces = $"File{i}_{repoName}.txt";
CreateFile(Path.Combine(repoPath, fileNameNoSpaces), fileContent.ToString());
// 2. Text file in root dir, named with spaces
string fileNameWithSpaces = $"File {i} {repoName}.txt";
CreateFile(Path.Combine(repoPath, fileNameWithSpaces), fileContent.ToString());
// 3. Text file in subdirectory Dir1, named with spaces
string dir1Path = Path.Combine(repoPath, "Dir1");
Directory.CreateDirectory(dir1Path);
CreateFile(Path.Combine(dir1Path, fileNameWithSpaces), fileContent.ToString());
// 4. Text file in subdirectory Dir2, named with spaces
string dir2Path = Path.Combine(repoPath, "Dir2");
Directory.CreateDirectory(dir2Path);
CreateFile(Path.Combine(dir2Path, fileNameWithSpaces), fileContent.ToString());
}
}
public static void CreateTestRepo(string name, string remoteUrl)
{
string packageRootDir = Path.GetFullPath(Path.Combine(Application.dataPath, "..", "Packages", name));
Directory.CreateDirectory(packageRootDir);
Utils.RunCommand(packageRootDir, PluginSettingsProvider.GitPath, "init").task.ContinueWith(_ => {
Utils.RunCommand(packageRootDir, PluginSettingsProvider.GitPath, $"remote add origin {remoteUrl}");
});
string packageJsonPath = Path.Combine(packageRootDir, "package.json");
string packageJsonContent = $@"{{
""name"": ""com.abuksigun.{name.ToLower()}"",
""version"": ""1.0.0"",
""displayName"": ""{name} Package"",
""description"": ""Description for {name}"",
""unity"": ""2019.4"",
""dependencies"": {{}}
}}";
File.WriteAllText(packageJsonPath, packageJsonContent);
PopulateRepoWithFiles(packageRootDir, name);
UnityEditor.PackageManager.Client.Resolve();
AssetDatabase.Refresh();
}
}
}