Files
attest/tuf/mock.go

67 lines
1.5 KiB
Go
Raw Normal View History

2024-10-17 13:40:17 -05:00
/*
Copyright Docker attest authors
2024-10-17 13:40:17 -05:00
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
2024-04-15 15:20:56 -05:00
package tuf
2024-08-28 16:13:06 -05:00
import (
"io"
"os"
"path/filepath"
"github.com/docker/attest/internal/util"
)
type MockTufClient struct {
srcPath string
}
2024-08-29 08:25:42 -05:00
func NewMockTufClient(srcPath string) *MockTufClient {
2024-08-28 16:13:06 -05:00
if srcPath == "" {
panic("srcPath must be set")
}
return &MockTufClient{
srcPath: srcPath,
}
}
2024-08-29 08:25:42 -05:00
func (dc *MockTufClient) DownloadTarget(target string, _ string) (file *TargetFile, err error) {
2024-08-28 16:13:06 -05:00
targetPath := filepath.Join(dc.srcPath, target)
src, err := os.Open(targetPath)
if err != nil {
return nil, err
}
defer src.Close()
2024-08-29 08:25:42 -05:00
b, err := io.ReadAll(src)
2024-08-28 16:13:06 -05:00
if err != nil {
return nil, err
}
2024-08-29 08:25:42 -05:00
return &TargetFile{TargetURI: targetPath, Data: b, Digest: util.SHA256Hex(b)}, nil
2024-08-28 16:13:06 -05:00
}
type MockVersionChecker struct {
err error
}
func NewMockVersionChecker() *MockVersionChecker {
return &MockVersionChecker{}
}
func (vc *MockVersionChecker) CheckVersion(_ Downloader) error {
return vc.err
}