-
Notifications
You must be signed in to change notification settings - Fork 116
Expand file tree
/
Copy pathparse_test.go
More file actions
414 lines (354 loc) · 12.6 KB
/
parse_test.go
File metadata and controls
414 lines (354 loc) · 12.6 KB
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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
package bundle
import (
"encoding/json"
"os"
"path/filepath"
"strings"
"testing"
"github.com/docker/model-runner/pkg/distribution/types"
)
func TestParse_NoModelWeights(t *testing.T) {
// Create a temporary directory for the test bundle
tempDir := t.TempDir()
// Create model subdirectory
modelDir := filepath.Join(tempDir, ModelSubdir)
if err := os.MkdirAll(modelDir, 0755); err != nil {
t.Fatalf("Failed to create model directory: %v", err)
}
// Create a valid config.json at bundle root
cfg := types.Config{
Format: types.FormatGGUF,
}
configPath := filepath.Join(tempDir, "config.json")
f, err := os.Create(configPath)
if err != nil {
t.Fatalf("Failed to create config.json: %v", err)
}
if err := json.NewEncoder(f).Encode(cfg); err != nil {
f.Close()
t.Fatalf("Failed to encode config: %v", err)
}
f.Close()
// Try to parse the bundle - should fail because no model weights are present
_, err = Parse(tempDir)
if err == nil {
t.Fatal("Expected error when parsing bundle without model weights, got nil")
}
expectedErrMsg := "no supported model weights found (neither GGUF, safetensors, nor DDUF)"
if !strings.Contains(err.Error(), expectedErrMsg) {
t.Errorf("Expected error message to contain %q, got: %v", expectedErrMsg, err)
}
}
func TestParse_WithGGUF(t *testing.T) {
// Create a temporary directory for the test bundle
tempDir := t.TempDir()
// Create model subdirectory
modelDir := filepath.Join(tempDir, ModelSubdir)
if err := os.MkdirAll(modelDir, 0755); err != nil {
t.Fatalf("Failed to create model directory: %v", err)
}
// Create a dummy GGUF file
ggufPath := filepath.Join(modelDir, "model.gguf")
if err := os.WriteFile(ggufPath, []byte("dummy gguf content"), 0644); err != nil {
t.Fatalf("Failed to create GGUF file: %v", err)
}
// Create a valid config.json at bundle root
cfg := types.Config{
Format: types.FormatGGUF,
}
configPath := filepath.Join(tempDir, "config.json")
f, err := os.Create(configPath)
if err != nil {
t.Fatalf("Failed to create config.json: %v", err)
}
if err := json.NewEncoder(f).Encode(cfg); err != nil {
f.Close()
t.Fatalf("Failed to encode config: %v", err)
}
f.Close()
// Parse the bundle - should succeed
bundle, err := Parse(tempDir)
if err != nil {
t.Fatalf("Expected successful parse with GGUF file, got error: %v", err)
}
if bundle.ggufFile != "model.gguf" {
t.Errorf("Expected ggufFile to be 'model.gguf', got: %s", bundle.ggufFile)
}
if bundle.safetensorsFile != "" {
t.Errorf("Expected safetensorsFile to be empty, got: %s", bundle.safetensorsFile)
}
}
func TestParse_WithNestedGGUF(t *testing.T) {
// Create a temporary directory for the test bundle.
tempDir := t.TempDir()
// Create model subdirectory.
modelDir := filepath.Join(tempDir, ModelSubdir)
if err := os.MkdirAll(modelDir, 0755); err != nil {
t.Fatalf("Failed to create model directory: %v", err)
}
// Create nested directory structure.
weightsDir := filepath.Join(modelDir, "nested", "weights")
if err := os.MkdirAll(weightsDir, 0755); err != nil {
t.Fatalf("Failed to create nested weights directory: %v", err)
}
// Create a GGUF file in the nested directory.
nestedGGUFPath := filepath.Join(weightsDir, "model.gguf")
if err := os.WriteFile(nestedGGUFPath, []byte("dummy nested gguf"), 0644); err != nil {
t.Fatalf("Failed to create nested GGUF file: %v", err)
}
// Create a valid config.json at bundle root.
cfg := types.Config{
Format: types.FormatGGUF,
}
configPath := filepath.Join(tempDir, "config.json")
f, err := os.Create(configPath)
if err != nil {
t.Fatalf("Failed to create config.json: %v", err)
}
if err := json.NewEncoder(f).Encode(cfg); err != nil {
f.Close()
t.Fatalf("Failed to encode config: %v", err)
}
f.Close()
// Parse the bundle and ensure GGUF discovery falls back to recursion.
bundle, err := Parse(tempDir)
if err != nil {
t.Fatalf("Expected successful parse with nested GGUF, got: %v", err)
}
expectedPath := filepath.Join("nested", "weights", "model.gguf")
if bundle.ggufFile != expectedPath {
t.Errorf("Expected ggufFile to be %q, got: %s", expectedPath, bundle.ggufFile)
}
fullPath := bundle.GGUFPath()
if fullPath == "" {
t.Error("Expected GGUFPath() to return a non-empty path")
}
if !strings.HasSuffix(fullPath, expectedPath) {
t.Errorf("Expected GGUFPath() to end with %q, got: %s", expectedPath, fullPath)
}
}
func TestParse_WithSafetensors(t *testing.T) {
// Create a temporary directory for the test bundle
tempDir := t.TempDir()
// Create model subdirectory
modelDir := filepath.Join(tempDir, ModelSubdir)
if err := os.MkdirAll(modelDir, 0755); err != nil {
t.Fatalf("Failed to create model directory: %v", err)
}
// Create a dummy safetensors file
safetensorsPath := filepath.Join(modelDir, "model.safetensors")
if err := os.WriteFile(safetensorsPath, []byte("dummy safetensors content"), 0644); err != nil {
t.Fatalf("Failed to create safetensors file: %v", err)
}
// Create a valid config.json at bundle root
cfg := types.Config{
Format: types.FormatSafetensors,
}
configPath := filepath.Join(tempDir, "config.json")
f, err := os.Create(configPath)
if err != nil {
t.Fatalf("Failed to create config.json: %v", err)
}
if err := json.NewEncoder(f).Encode(cfg); err != nil {
f.Close()
t.Fatalf("Failed to encode config: %v", err)
}
f.Close()
// Parse the bundle - should succeed
bundle, err := Parse(tempDir)
if err != nil {
t.Fatalf("Expected successful parse with safetensors file, got error: %v", err)
}
if bundle.safetensorsFile != "model.safetensors" {
t.Errorf("Expected safetensorsFile to be 'model.safetensors', got: %s", bundle.safetensorsFile)
}
if bundle.ggufFile != "" {
t.Errorf("Expected ggufFile to be empty, got: %s", bundle.ggufFile)
}
}
func TestParse_WithDDUF(t *testing.T) {
// Create a temporary directory for the test bundle.
tempDir := t.TempDir()
// Create model subdirectory.
modelDir := filepath.Join(tempDir, ModelSubdir)
if err := os.MkdirAll(modelDir, 0755); err != nil {
t.Fatalf("Failed to create model directory: %v", err)
}
// Create a dummy DDUF file.
ddufPath := filepath.Join(modelDir, "model.dduf")
if err := os.WriteFile(ddufPath, []byte("dummy dduf content"), 0644); err != nil {
t.Fatalf("Failed to create DDUF file: %v", err)
}
// Create a valid config.json at bundle root.
cfg := types.Config{
Format: types.FormatDDUF,
}
configPath := filepath.Join(tempDir, "config.json")
f, err := os.Create(configPath)
if err != nil {
t.Fatalf("Failed to create config.json: %v", err)
}
if err := json.NewEncoder(f).Encode(cfg); err != nil {
f.Close()
t.Fatalf("Failed to encode config: %v", err)
}
f.Close()
// Parse the bundle and ensure DDUF-only bundles are accepted.
bundle, err := Parse(tempDir)
if err != nil {
t.Fatalf("Expected successful parse with DDUF file, got: %v", err)
}
if bundle.ddufFile != "model.dduf" {
t.Errorf("Expected ddufFile to be %q, got: %s", "model.dduf", bundle.ddufFile)
}
fullPath := bundle.DDUFPath()
if fullPath == "" {
t.Error("Expected DDUFPath() to return a non-empty path")
}
if !strings.HasSuffix(fullPath, "model.dduf") {
t.Errorf("Expected DDUFPath() to end with %q, got: %s", "model.dduf", fullPath)
}
}
func TestParse_WithNestedSafetensors(t *testing.T) {
// Create a temporary directory for the test bundle
tempDir := t.TempDir()
// Create model subdirectory
modelDir := filepath.Join(tempDir, ModelSubdir)
if err := os.MkdirAll(modelDir, 0755); err != nil {
t.Fatalf("Failed to create model directory: %v", err)
}
// Create nested directory structure (V0.2 layout)
textEncoderDir := filepath.Join(modelDir, "text_encoder")
if err := os.MkdirAll(textEncoderDir, 0755); err != nil {
t.Fatalf("Failed to create text_encoder directory: %v", err)
}
// Create a safetensors file in the nested directory (no safetensors at top level)
nestedSafetensorsPath := filepath.Join(textEncoderDir, "model.safetensors")
if err := os.WriteFile(nestedSafetensorsPath, []byte("dummy nested safetensors content"), 0644); err != nil {
t.Fatalf("Failed to create nested safetensors file: %v", err)
}
// Create a valid config.json at bundle root
cfg := types.Config{
Format: types.FormatSafetensors,
}
configPath := filepath.Join(tempDir, "config.json")
f, err := os.Create(configPath)
if err != nil {
t.Fatalf("Failed to create config.json: %v", err)
}
if err := json.NewEncoder(f).Encode(cfg); err != nil {
f.Close()
t.Fatalf("Failed to encode config: %v", err)
}
f.Close()
// Parse the bundle - should succeed by finding safetensors recursively
bundle, err := Parse(tempDir)
if err != nil {
t.Fatalf("Expected successful parse with nested safetensors, got error: %v", err)
}
// The safetensorsFile should include the relative path from modelDir
expectedPath := filepath.Join("text_encoder", "model.safetensors")
if bundle.safetensorsFile != expectedPath {
t.Errorf("Expected safetensorsFile to be %q, got: %s", expectedPath, bundle.safetensorsFile)
}
// Verify SafetensorsPath() returns the full path
fullPath := bundle.SafetensorsPath()
if fullPath == "" {
t.Error("Expected SafetensorsPath() to return a non-empty path")
}
if !strings.HasSuffix(fullPath, expectedPath) {
t.Errorf("Expected SafetensorsPath() to end with %q, got: %s", expectedPath, fullPath)
}
}
func TestParse_WithNestedDDUF(t *testing.T) {
// Create a temporary directory for the test bundle.
tempDir := t.TempDir()
// Create model subdirectory.
modelDir := filepath.Join(tempDir, ModelSubdir)
if err := os.MkdirAll(modelDir, 0755); err != nil {
t.Fatalf("Failed to create model directory: %v", err)
}
// Create nested directory structure.
diffusersDir := filepath.Join(modelDir, "sanitized", "diffusers")
if err := os.MkdirAll(diffusersDir, 0755); err != nil {
t.Fatalf("Failed to create nested diffusers directory: %v", err)
}
// Create a DDUF file in the nested directory.
nestedDDUFPath := filepath.Join(diffusersDir, "model.dduf")
if err := os.WriteFile(nestedDDUFPath, []byte("dummy nested dduf"), 0644); err != nil {
t.Fatalf("Failed to create nested DDUF file: %v", err)
}
// Create a valid config.json at bundle root.
cfg := types.Config{
Format: types.FormatDDUF,
}
configPath := filepath.Join(tempDir, "config.json")
f, err := os.Create(configPath)
if err != nil {
t.Fatalf("Failed to create config.json: %v", err)
}
if err := json.NewEncoder(f).Encode(cfg); err != nil {
f.Close()
t.Fatalf("Failed to encode config: %v", err)
}
f.Close()
// Parse the bundle and ensure DDUF discovery falls back to recursion.
bundle, err := Parse(tempDir)
if err != nil {
t.Fatalf("Expected successful parse with nested DDUF, got: %v", err)
}
expectedPath := filepath.Join("sanitized", "diffusers", "model.dduf")
if bundle.ddufFile != expectedPath {
t.Errorf("Expected ddufFile to be %q, got: %s", expectedPath, bundle.ddufFile)
}
fullPath := bundle.DDUFPath()
if fullPath == "" {
t.Error("Expected DDUFPath() to return a non-empty path")
}
if !strings.HasSuffix(fullPath, expectedPath) {
t.Errorf("Expected DDUFPath() to end with %q, got: %s", expectedPath, fullPath)
}
}
func TestParse_WithBothFormats(t *testing.T) {
// Create a temporary directory for the test bundle
tempDir := t.TempDir()
// Create model subdirectory
modelDir := filepath.Join(tempDir, ModelSubdir)
if err := os.MkdirAll(modelDir, 0755); err != nil {
t.Fatalf("Failed to create model directory: %v", err)
}
// Create both GGUF and safetensors files
ggufPath := filepath.Join(modelDir, "model.gguf")
if err := os.WriteFile(ggufPath, []byte("dummy gguf content"), 0644); err != nil {
t.Fatalf("Failed to create GGUF file: %v", err)
}
safetensorsPath := filepath.Join(modelDir, "model.safetensors")
if err := os.WriteFile(safetensorsPath, []byte("dummy safetensors content"), 0644); err != nil {
t.Fatalf("Failed to create safetensors file: %v", err)
}
// Create a valid config.json at bundle root
cfg := types.Config{
Format: types.FormatGGUF,
}
configPath := filepath.Join(tempDir, "config.json")
f, err := os.Create(configPath)
if err != nil {
t.Fatalf("Failed to create config.json: %v", err)
}
if err := json.NewEncoder(f).Encode(cfg); err != nil {
f.Close()
t.Fatalf("Failed to encode config: %v", err)
}
f.Close()
// Parse the bundle - should succeed with both files present
bundle, err := Parse(tempDir)
if err != nil {
t.Fatalf("Expected successful parse with both formats, got error: %v", err)
}
if bundle.ggufFile != "model.gguf" {
t.Errorf("Expected ggufFile to be 'model.gguf', got: %s", bundle.ggufFile)
}
if bundle.safetensorsFile != "model.safetensors" {
t.Errorf("Expected safetensorsFile to be 'model.safetensors', got: %s", bundle.safetensorsFile)
}
}