1
1
using System ;
2
2
using System . Collections . Generic ;
3
- using System . Diagnostics ;
4
3
using System . IO ;
5
4
using System . IO . Compression ;
6
5
using System . Linq ;
7
6
using System . Threading . Tasks ;
8
7
using Azure . Functions . Cli . Common ;
9
8
using Azure . Functions . Cli . Helpers ;
10
9
using Xunit ;
10
+ using Xunit . Abstractions ;
11
11
12
12
namespace Azure . Functions . Cli . Tests
13
13
{
14
14
public class ZipHelperTests
15
15
{
16
+ private ITestOutputHelper _output ;
17
+
18
+ public ZipHelperTests ( ITestOutputHelper output )
19
+ {
20
+ _output = output ;
21
+ }
22
+
16
23
[ Fact ]
17
24
public async Task CreateZip_Succeeds ( )
18
25
{
26
+ var windowsZip = await BuildAndCopyFileToZipAsync ( "win-x64" ) ;
27
+ var linuxZip = await BuildAndCopyFileToZipAsync ( "linux-x64" ) ;
28
+
29
+ // copy the linux zip so we can include it in the docker image for validation
30
+ File . Copy ( linuxZip , Path . Combine ( Directory . GetCurrentDirectory ( ) , "ZippedOnWindows.zip" ) , true ) ;
31
+
32
+ if ( OperatingSystem . IsWindows ( ) )
33
+ {
34
+ VerifyWindowsZip ( windowsZip ) ;
35
+ VerifyLinuxZipOnDocker ( linuxZip ) ;
36
+ }
37
+ else if ( OperatingSystem . IsLinux ( ) )
38
+ {
39
+ // VerifyLinuxZip(windowsZip, "ZippedExe.exe");
40
+ }
41
+ else
42
+ {
43
+ throw new Exception ( "Unsupported OS" ) ;
44
+ }
45
+ }
46
+ private async Task < string > BuildAndCopyFileToZipAsync ( string rid )
47
+ {
48
+ // files we'll need to zip up
49
+ const string proj = "ZippedExe" ;
50
+ string exe = rid . StartsWith ( "linux" ) ? proj : $ "{ proj } .exe";
51
+ string dll = $ "{ proj } .dll";
52
+ string config = $ "{ proj } .runtimeconfig.json";
53
+
19
54
var tempDir = Path . Combine ( Path . GetTempPath ( ) , Path . GetRandomFileName ( ) ) ;
20
55
Directory . CreateDirectory ( tempDir ) ;
21
56
22
- // Create temp files
57
+ // Create some temp files
23
58
var files = new List < string > ( ) ;
24
59
for ( int i = 0 ; i < 10 ; i ++ )
25
60
{
@@ -28,72 +63,102 @@ public async Task CreateZip_Succeeds()
28
63
files . Add ( file ) ;
29
64
}
30
65
31
- void FindAndCopyFileToZip ( string fileName )
66
+ // walk up to the 'test' directory
67
+ var dir = new DirectoryInfo ( Directory . GetCurrentDirectory ( ) ) ;
68
+ dir = dir . Parent . Parent . Parent . Parent ;
69
+
70
+ // build the project for the rid
71
+ var csproj = dir . GetFiles ( $ "{ proj } .csproj", SearchOption . AllDirectories ) . FirstOrDefault ( ) ;
72
+ var csprojDir = csproj . Directory . FullName ;
73
+ ProcessWrapper . RunProcess ( "dotnet" , $ "build -r { rid } ", csprojDir , writeOutput : WriteOutput ) ;
74
+
75
+ var outPath = Path . Combine ( csprojDir , "bin" , "Debug" , "net8.0" , rid ) ;
76
+
77
+ // copy the files to the zip dir
78
+ foreach ( string fileName in new [ ] { exe , dll , config } )
32
79
{
33
- var dir = new DirectoryInfo ( Directory . GetCurrentDirectory ( ) ) ;
34
- dir = dir . Parent . Parent . Parent . Parent ;
35
- var exe = dir . GetFiles ( fileName , SearchOption . AllDirectories ) . FirstOrDefault ( ) ;
80
+ var f = new DirectoryInfo ( outPath ) . GetFiles ( fileName , SearchOption . AllDirectories ) . FirstOrDefault ( ) ;
36
81
Assert . True ( exe != null , $ "{ fileName } not found.") ;
37
-
38
82
string destFile = Path . Combine ( tempDir , fileName ) ;
39
- File . Copy ( exe . FullName , destFile ) ;
83
+ File . Copy ( f . FullName , destFile ) ;
40
84
files . Add ( destFile ) ;
41
85
}
42
86
43
- // find and add ZippedExe to the string destExe = Path.Combine(tempDir, exeName);
44
- FindAndCopyFileToZip ( "ZippedExe.exe" ) ;
45
- FindAndCopyFileToZip ( "ZippedExe.dll" ) ;
46
- FindAndCopyFileToZip ( "ZippedExe.runtimeconfig.json" ) ;
47
-
48
- var stream = await ZipHelper . CreateZip ( files , tempDir , new string [ ] { "ZippedExe.exe" } ) ;
49
-
87
+ // use our zip utilities to zip them
50
88
var zipFile = Path . Combine ( tempDir , "test.zip" ) ;
89
+ var stream = await ZipHelper . CreateZip ( files , tempDir , executables : new string [ ] { exe } ) ;
51
90
await FileSystemHelpers . WriteToFile ( zipFile , stream ) ;
52
- Console . WriteLine ( $ "---Zip file created at { zipFile } ") ;
53
91
54
- if ( OperatingSystem . IsWindows ( ) )
55
- {
56
- VerifyWindowsZip ( zipFile , "ZippedExe.exe" ) ;
57
-
58
- // copy file to out dir so that devops can store it for linux tests
59
- File . Copy ( zipFile , Path . Combine ( Directory . GetCurrentDirectory ( ) , "ZippedOnWindows.zip" ) ) ;
60
- }
61
- else if ( OperatingSystem . IsLinux ( ) )
62
- {
63
- VerifyLinuxZip ( zipFile , "ZippedExe.exe" ) ;
64
- }
65
- else
66
- {
67
- throw new Exception ( "Unsupported OS" ) ;
68
- }
92
+ return zipFile ;
69
93
}
70
94
71
- private static void VerifyWindowsZip ( string zipFile , string exeName )
95
+ private static void VerifyWindowsZip ( string zipFile )
72
96
{
73
97
var unzipPath = Path . Combine ( Path . GetTempPath ( ) , Path . GetRandomFileName ( ) ) ;
74
98
ZipFile . ExtractToDirectory ( zipFile , unzipPath ) ;
75
99
76
- var archive = ZipFile . OpenRead ( zipFile ) ;
100
+ string exeOutput = null ;
101
+ string exeError = null ;
77
102
78
- var proc = Process . Start ( new ProcessStartInfo
79
- {
80
- FileName = Path . Combine ( unzipPath , exeName ) ,
81
- RedirectStandardOutput = true ,
82
- RedirectStandardError = true
83
- } ) ;
103
+ ProcessWrapper . RunProcess ( Path . Combine ( unzipPath , "ZippedExe.exe" ) , string . Empty , unzipPath , o => exeOutput = o , e => exeError = e ) ;
84
104
85
- proc . WaitForExit ( ) ;
105
+ Assert . Equal ( string . Empty , exeError ) ;
106
+ Assert . Equal ( "Hello, World!" , exeOutput . Trim ( ) ) ;
107
+ }
86
108
87
- string output = proc . StandardOutput . ReadToEnd ( ) ;
88
- string error = proc . StandardError . ReadToEnd ( ) ;
109
+ private void VerifyLinuxZipOnDocker ( string linuxZip )
110
+ {
111
+ string dockerOutput = null ;
112
+
113
+ void CaptureOutput ( string output )
114
+ {
115
+ dockerOutput = output ;
116
+ WriteOutput ( output ) ;
117
+ }
118
+
119
+ string imageName = $ "{ Guid . NewGuid ( ) } :v1";
120
+ string containerName = Guid . NewGuid ( ) . ToString ( ) ;
89
121
90
- Assert . Equal ( string . Empty , error ) ;
91
- Assert . Equal ( "Hello, World!" , output . Trim ( ) ) ;
122
+ var outDir = Directory . GetCurrentDirectory ( ) ;
123
+ try
124
+ {
125
+ ProcessWrapper . RunProcess ( "docker" , $ "build -t { imageName } .", outDir , writeOutput : CaptureOutput ) ;
126
+ ProcessWrapper . RunProcess ( "docker" , $ "run --name { containerName } --privileged { imageName } ", outDir , writeOutput : CaptureOutput ) ;
127
+
128
+ // output should have the dir listing of the mounted zip and end with "Hello World"
129
+ var outputLines = dockerOutput . Split ( '\n ' , StringSplitOptions . RemoveEmptyEntries ) ;
130
+ Assert . Equal ( 15 , outputLines . Length ) ;
131
+
132
+ // ignore first ('total ...') and last ('Hello, World!') to validate file perms
133
+ foreach ( string line in outputLines [ 1 ..^ 1 ] )
134
+ {
135
+ // exe should be executable
136
+ if ( line . EndsWith ( "ZippedExe" ) )
137
+ {
138
+ Assert . StartsWith ( "-rwxrwxrwx" , line ) ;
139
+ }
140
+ else
141
+ {
142
+ Assert . StartsWith ( "-rw-rw-rw-" , line ) ;
143
+ }
144
+ }
145
+ Assert . Equal ( "Hello, World!" , outputLines . Last ( ) ) ;
146
+ }
147
+ finally
148
+ {
149
+ // clean up
150
+ ProcessWrapper . RunProcess ( "docker" , $ "rm --force { containerName } ", outDir , writeOutput : CaptureOutput ) ;
151
+ ProcessWrapper . RunProcess ( "docker" , $ "rmi --force { imageName } ", outDir , writeOutput : CaptureOutput ) ;
152
+ }
92
153
}
93
154
94
155
private static void VerifyLinuxZip ( string zipFile , string exeName )
95
156
{
96
- VerifyWindowsZip ( zipFile , exeName ) ;
157
+ }
158
+
159
+ private void WriteOutput ( string output )
160
+ {
161
+ _output . WriteLine ( output ) ;
97
162
}
98
163
}
99
164
}
0 commit comments