1
+ using Microsoft . Extensions . Configuration ;
2
+ using Microsoft . Extensions . Logging . Abstractions ;
3
+ using Microsoft . VisualStudio . TestTools . UnitTesting ;
4
+ using System . CommandLine ;
5
+ using System ;
6
+ using System . CommandLine . Invocation ;
7
+ using System . Collections . Generic ;
8
+ using Moq ;
9
+ using System . ComponentModel . Composition . Hosting ;
10
+ using Cosmos . DataTransfer . Interfaces ;
11
+ using Microsoft . Extensions . Logging ;
12
+ using System . Threading ;
13
+
14
+ namespace Cosmos . DataTransfer . Core . UnitTests
15
+ {
16
+ [ TestClass ]
17
+ public class RunCommandTests
18
+ {
19
+ [ TestMethod ]
20
+ public void Invoke_WithSingleConfig_ExecutesSingleOperation ( )
21
+ {
22
+ const string source = "testSource" ;
23
+ const string sink = "testSink" ;
24
+ IConfigurationRoot configuration = new ConfigurationBuilder ( )
25
+ . AddInMemoryCollection ( new Dictionary < string , string >
26
+ {
27
+ { "Source" , source } ,
28
+ { "Sink" , sink } ,
29
+ } )
30
+ . Build ( ) ;
31
+ var loader = new Mock < IExtensionLoader > ( ) ;
32
+ var sourceExtension = new Mock < IDataSourceExtension > ( ) ;
33
+ sourceExtension . SetupGet ( ds => ds . DisplayName ) . Returns ( source ) ;
34
+ loader
35
+ . Setup ( l => l . LoadExtensions < IDataSourceExtension > ( It . IsAny < CompositionContainer > ( ) ) )
36
+ . Returns ( new List < IDataSourceExtension > { sourceExtension . Object } ) ;
37
+
38
+ var sinkExtension = new Mock < IDataSinkExtension > ( ) ;
39
+ sinkExtension . SetupGet ( ds => ds . DisplayName ) . Returns ( sink ) ;
40
+ loader
41
+ . Setup ( l => l . LoadExtensions < IDataSinkExtension > ( It . IsAny < CompositionContainer > ( ) ) )
42
+ . Returns ( new List < IDataSinkExtension > { sinkExtension . Object } ) ;
43
+ var handler = new RunCommand . CommandHandler ( loader . Object ,
44
+ configuration ,
45
+ NullLoggerFactory . Instance ) ;
46
+
47
+ var parseResult = new RootCommand ( ) . Parse ( Array . Empty < string > ( ) ) ;
48
+ var result = handler . Invoke ( new InvocationContext ( parseResult ) ) ;
49
+ Assert . AreEqual ( 0 , result ) ;
50
+
51
+ sourceExtension . Verify ( se => se . ReadAsync ( It . IsAny < IConfiguration > ( ) , It . IsAny < ILogger > ( ) , It . IsAny < CancellationToken > ( ) ) , Times . Once ) ;
52
+ sinkExtension . Verify ( se => se . WriteAsync ( It . IsAny < IAsyncEnumerable < IDataItem > > ( ) , It . IsAny < IConfiguration > ( ) , sourceExtension . Object , It . IsAny < ILogger > ( ) , It . IsAny < CancellationToken > ( ) ) , Times . Once ) ;
53
+ }
54
+
55
+ [ TestMethod ]
56
+ public void Invoke_WithMultipleOperations_ExecutesAllOperations ( )
57
+ {
58
+ const string source = "testSource" ;
59
+ const string sink = "testSink" ;
60
+ IConfigurationRoot configuration = new ConfigurationBuilder ( )
61
+ . AddInMemoryCollection ( new Dictionary < string , string >
62
+ {
63
+ { "Source" , source } ,
64
+ { "Sink" , sink } ,
65
+ { "Operations:0:SourceSettings:FilePath" , "file-in.json" } ,
66
+ { "Operations:0:SinkSettings:FilePath" , "file-out.json" } ,
67
+ { "Operations:1:SourceSettings:FilePath" , "file1.json" } ,
68
+ { "Operations:1:SinkSettings:FilePath" , "file2.json" } ,
69
+ { "Operations:2:SourceSettings:FilePath" , "fileA.json" } ,
70
+ { "Operations:2:SinkSettings:FilePath" , "fileB.json" } ,
71
+ } )
72
+ . Build ( ) ;
73
+ var loader = new Mock < IExtensionLoader > ( ) ;
74
+ var sourceExtension = new Mock < IDataSourceExtension > ( ) ;
75
+ sourceExtension . SetupGet ( ds => ds . DisplayName ) . Returns ( source ) ;
76
+ loader
77
+ . Setup ( l => l . LoadExtensions < IDataSourceExtension > ( It . IsAny < CompositionContainer > ( ) ) )
78
+ . Returns ( new List < IDataSourceExtension > { sourceExtension . Object } ) ;
79
+
80
+ var sinkExtension = new Mock < IDataSinkExtension > ( ) ;
81
+ sinkExtension . SetupGet ( ds => ds . DisplayName ) . Returns ( sink ) ;
82
+ loader
83
+ . Setup ( l => l . LoadExtensions < IDataSinkExtension > ( It . IsAny < CompositionContainer > ( ) ) )
84
+ . Returns ( new List < IDataSinkExtension > { sinkExtension . Object } ) ;
85
+ var handler = new RunCommand . CommandHandler ( loader . Object ,
86
+ configuration ,
87
+ NullLoggerFactory . Instance ) ;
88
+
89
+ var parseResult = new RootCommand ( ) . Parse ( Array . Empty < string > ( ) ) ;
90
+ var result = handler . Invoke ( new InvocationContext ( parseResult ) ) ;
91
+ Assert . AreEqual ( 0 , result ) ;
92
+
93
+ sourceExtension . Verify ( se => se . ReadAsync ( It . IsAny < IConfiguration > ( ) , It . IsAny < ILogger > ( ) , It . IsAny < CancellationToken > ( ) ) , Times . Exactly ( 3 ) ) ;
94
+ sinkExtension . Verify ( se => se . WriteAsync ( It . IsAny < IAsyncEnumerable < IDataItem > > ( ) , It . IsAny < IConfiguration > ( ) , sourceExtension . Object , It . IsAny < ILogger > ( ) , It . IsAny < CancellationToken > ( ) ) , Times . Exactly ( 3 ) ) ;
95
+ }
96
+
97
+ [ TestMethod ]
98
+ public void Invoke_WithMultipleSinks_ExecutesAllOperationsFromSource ( )
99
+ {
100
+ const string source = "testSource" ;
101
+ const string sink = "testSink" ;
102
+ const string sourceFile = "file-in.json" ;
103
+ IConfigurationRoot configuration = new ConfigurationBuilder ( )
104
+ . AddInMemoryCollection ( new Dictionary < string , string >
105
+ {
106
+ { "Source" , source } ,
107
+ { "Sink" , sink } ,
108
+ { "SourceSettings:FilePath" , sourceFile } ,
109
+ { "Operations:0:SinkSettings:FilePath" , "file-out.json" } ,
110
+ { "Operations:1:SinkSettings:FilePath" , "file2.json" } ,
111
+ { "Operations:2:SinkSettings:FilePath" , "fileB.json" } ,
112
+ } )
113
+ . Build ( ) ;
114
+ var loader = new Mock < IExtensionLoader > ( ) ;
115
+ var sourceExtension = new Mock < IDataSourceExtension > ( ) ;
116
+ sourceExtension . SetupGet ( ds => ds . DisplayName ) . Returns ( source ) ;
117
+ loader
118
+ . Setup ( l => l . LoadExtensions < IDataSourceExtension > ( It . IsAny < CompositionContainer > ( ) ) )
119
+ . Returns ( new List < IDataSourceExtension > { sourceExtension . Object } ) ;
120
+
121
+ var sinkExtension = new Mock < IDataSinkExtension > ( ) ;
122
+ sinkExtension . SetupGet ( ds => ds . DisplayName ) . Returns ( sink ) ;
123
+ loader
124
+ . Setup ( l => l . LoadExtensions < IDataSinkExtension > ( It . IsAny < CompositionContainer > ( ) ) )
125
+ . Returns ( new List < IDataSinkExtension > { sinkExtension . Object } ) ;
126
+ var handler = new RunCommand . CommandHandler ( loader . Object ,
127
+ configuration ,
128
+ NullLoggerFactory . Instance ) ;
129
+
130
+ var parseResult = new RootCommand ( ) . Parse ( Array . Empty < string > ( ) ) ;
131
+ var result = handler . Invoke ( new InvocationContext ( parseResult ) ) ;
132
+ Assert . AreEqual ( 0 , result ) ;
133
+
134
+ sourceExtension . Verify ( se => se . ReadAsync ( It . Is < IConfiguration > ( c => c [ "FilePath" ] == sourceFile ) , It . IsAny < ILogger > ( ) , It . IsAny < CancellationToken > ( ) ) , Times . Exactly ( 3 ) ) ;
135
+ sinkExtension . Verify ( se => se . WriteAsync ( It . IsAny < IAsyncEnumerable < IDataItem > > ( ) , It . IsAny < IConfiguration > ( ) , sourceExtension . Object , It . IsAny < ILogger > ( ) , It . IsAny < CancellationToken > ( ) ) , Times . Exactly ( 3 ) ) ;
136
+ }
137
+
138
+ [ TestMethod ]
139
+ public void Invoke_WithMultipleSources_ExecutesAllOperationsToSink ( )
140
+ {
141
+ const string source = "testSource" ;
142
+ const string sink = "testSink" ;
143
+ const string targetFile = "file-out.json" ;
144
+ IConfigurationRoot configuration = new ConfigurationBuilder ( )
145
+ . AddInMemoryCollection ( new Dictionary < string , string >
146
+ {
147
+ { "Source" , source } ,
148
+ { "Sink" , sink } ,
149
+ { "SinkSettings:FilePath" , targetFile } ,
150
+ { "Operations:0:SourceSettings:FilePath" , "file-in.json" } ,
151
+ { "Operations:1:SourceSettings:FilePath" , "file1.json" } ,
152
+ { "Operations:2:SourceSettings:FilePath" , "fileA.json" } ,
153
+ } )
154
+ . Build ( ) ;
155
+ var loader = new Mock < IExtensionLoader > ( ) ;
156
+ var sourceExtension = new Mock < IDataSourceExtension > ( ) ;
157
+ sourceExtension . SetupGet ( ds => ds . DisplayName ) . Returns ( source ) ;
158
+ loader
159
+ . Setup ( l => l . LoadExtensions < IDataSourceExtension > ( It . IsAny < CompositionContainer > ( ) ) )
160
+ . Returns ( new List < IDataSourceExtension > { sourceExtension . Object } ) ;
161
+
162
+ var sinkExtension = new Mock < IDataSinkExtension > ( ) ;
163
+ sinkExtension . SetupGet ( ds => ds . DisplayName ) . Returns ( sink ) ;
164
+ loader
165
+ . Setup ( l => l . LoadExtensions < IDataSinkExtension > ( It . IsAny < CompositionContainer > ( ) ) )
166
+ . Returns ( new List < IDataSinkExtension > { sinkExtension . Object } ) ;
167
+ var handler = new RunCommand . CommandHandler ( loader . Object ,
168
+ configuration ,
169
+ NullLoggerFactory . Instance ) ;
170
+
171
+ var parseResult = new RootCommand ( ) . Parse ( Array . Empty < string > ( ) ) ;
172
+ var result = handler . Invoke ( new InvocationContext ( parseResult ) ) ;
173
+ Assert . AreEqual ( 0 , result ) ;
174
+
175
+ sourceExtension . Verify ( se => se . ReadAsync ( It . IsAny < IConfiguration > ( ) , It . IsAny < ILogger > ( ) , It . IsAny < CancellationToken > ( ) ) , Times . Exactly ( 3 ) ) ;
176
+ sinkExtension . Verify ( se => se . WriteAsync ( It . IsAny < IAsyncEnumerable < IDataItem > > ( ) , It . Is < IConfiguration > ( c => c [ "FilePath" ] == targetFile ) , sourceExtension . Object , It . IsAny < ILogger > ( ) , It . IsAny < CancellationToken > ( ) ) , Times . Exactly ( 3 ) ) ;
177
+ }
178
+ }
179
+ }
0 commit comments