-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathextensions.go
197 lines (184 loc) · 5.48 KB
/
extensions.go
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
package testutil
import (
"archive/zip"
"bytes"
"encoding/json"
"encoding/xml"
"testing"
"github.com/stretchr/testify/require"
"github.com/coder/code-marketplace/storage"
)
type Extension struct {
Publisher string
Name string
Tags string
Files []storage.VSIXAsset
Properties []storage.VSIXProperty
Description string
Categories string
Versions []storage.Version
LatestVersion string
Dependencies []string
Pack []string
}
func (e Extension) Copy() Extension {
var n Extension
data, _ := json.Marshal(e)
_ = json.Unmarshal(data, &n)
return n
}
var Extensions = []Extension{
{
Publisher: "foo",
Name: "zany",
Description: "foo bar baz qux",
Tags: "tag1",
Categories: "category1",
Files: []storage.VSIXAsset{
{Type: "Microsoft.VisualStudio.Services.Icons.Default", Path: "icon.png", Addressable: "true"},
{Type: "Unaddressable", Path: "unaddressable.ext", Addressable: "false"},
},
Properties: []storage.VSIXProperty{
{
ID: "Microsoft.VisualStudio.Code.ExtensionPack",
Value: "a.b,b.c",
},
{
ID: "Microsoft.VisualStudio.Code.ExtensionDependencies",
Value: "d.e",
},
},
Versions: []storage.Version{
{Version: "1.0.0"},
{Version: "1.0.0", TargetPlatform: storage.PlatformWin32X64},
{Version: "2.0.0"},
{Version: "3.0.0"},
{Version: "3.0.0", TargetPlatform: storage.PlatformLinuxX64},
{Version: "3.0.0", TargetPlatform: storage.PlatformLinuxArm64},
{Version: "3.0.0", TargetPlatform: storage.PlatformWin32X64},
{Version: "3.0.0", TargetPlatform: storage.PlatformAlpineX64},
{Version: "3.0.0", TargetPlatform: storage.PlatformDarwinX64},
{Version: "1.5.2"},
{Version: "2.2.2"},
},
LatestVersion: "3.0.0",
Dependencies: []string{"d.e"},
Pack: []string{"a.b", "b.c"},
},
{
Publisher: "foo",
Name: "buz",
Description: "quix baz bar buz sitting",
Tags: "tag2",
Categories: "category2",
Properties: []storage.VSIXProperty{
{
ID: "Microsoft.VisualStudio.Code.ExtensionPack",
Value: "",
},
{
ID: "Microsoft.VisualStudio.Code.ExtensionDependencies",
Value: "",
},
},
Versions: []storage.Version{{Version: "version1"}},
LatestVersion: "version1",
},
{
Publisher: "bar",
Name: "squigly",
Description: "squigly foo and more foo bar baz",
Tags: "tag1,tag2",
Categories: "category1,category2",
Versions: []storage.Version{{Version: "version1"}, {Version: "version2"}},
LatestVersion: "version2",
},
{
Publisher: "fred",
Name: "thud",
Description: "frobbles the frobnozzle",
Tags: "tag3,tag4,tag5",
Categories: "category1",
Versions: []storage.Version{{Version: "version1"}, {Version: "version2"}},
LatestVersion: "version2",
},
{
Publisher: "qqqqqqqqqqq",
Name: "qqqqq",
Description: "qqqqqqqqqqqqqqqqqqq",
Tags: "qq,qqq,qqqq",
Categories: "q",
Versions: []storage.Version{{Version: "qqq"}, {Version: "q"}},
LatestVersion: "qqq",
},
}
func ConvertExtensionToManifest(ext Extension, version storage.Version) *storage.VSIXManifest {
ext = ext.Copy()
return &storage.VSIXManifest{
Metadata: storage.VSIXMetadata{
Identity: storage.VSIXIdentity{
ID: ext.Name,
Version: version.Version,
Publisher: ext.Publisher,
TargetPlatform: version.TargetPlatform,
},
Properties: storage.VSIXProperties{
Property: ext.Properties,
},
Description: ext.Description,
Tags: ext.Tags,
Categories: ext.Categories,
},
Assets: storage.VSIXAssets{
Asset: ext.Files,
},
}
}
func ConvertExtensionToManifestBytes(t *testing.T, ext Extension, version storage.Version) []byte {
manifestBytes, err := xml.Marshal(ConvertExtensionToManifest(ext, version))
require.NoError(t, err)
return manifestBytes
}
type file struct {
name string
body []byte
}
// createVSIX returns the bytes for a VSIX file containing the provided raw
// manifest and package.json bytes (if not nil) and an icon.
func CreateVSIX(t *testing.T, manifestBytes []byte, packageJSONBytes []byte) []byte {
files := []file{{"icon.png", []byte("fake icon")}}
if manifestBytes != nil {
files = append(files, file{"extension.vsixmanifest", manifestBytes})
}
if packageJSONBytes != nil {
files = append(files, file{"extension/package.json", packageJSONBytes})
}
buf := bytes.NewBuffer(nil)
zw := zip.NewWriter(buf)
for _, file := range files {
fw, err := zw.Create(file.name)
require.NoError(t, err)
_, err = fw.Write([]byte(file.body))
require.NoError(t, err)
}
err := zw.Close()
require.NoError(t, err)
return buf.Bytes()
}
// CreateVSIXFromManifest returns the bytes for a VSIX file containing the
// provided manifest and an icon.
func CreateVSIXFromManifest(t *testing.T, manifest *storage.VSIXManifest) []byte {
manifestBytes, err := xml.Marshal(manifest)
require.NoError(t, err)
return CreateVSIX(t, manifestBytes, nil)
}
func CreateVSIXFromPackageJSON(t *testing.T, packageJSON *storage.VSIXPackageJSON) []byte {
packageJSONBytes, err := json.Marshal(packageJSON)
require.NoError(t, err)
return CreateVSIX(t, nil, packageJSONBytes)
}
// CreateVSIXFromExtension returns the bytes for a VSIX file containing the
// manifest for the provided test extension and an icon.
func CreateVSIXFromExtension(t *testing.T, ext Extension, version storage.Version) []byte {
return CreateVSIXFromManifest(t, ConvertExtensionToManifest(ext, version))
}