1
0
Fork 0
mirror of https://github.com/gocsaf/csaf.git synced 2025-12-22 11:55:40 +01:00
gocsaf/internal/misc/mime_test.go
JanHoefelmeyer 3a7b411789 formatting
2023-09-08 13:34:45 +02:00

27 lines
801 B
Go

// This file is Free Software under the MIT License
// without warranty, see README.md and LICENSES/MIT.txt for details.
//
// SPDX-License-Identifier: MIT
//
// SPDX-FileCopyrightText: 2023 German Federal Office for Information Security (BSI) <https://www.bsi.bund.de>
// Software-Engineering: 2023 Intevation GmbH <https://intevation.de>
package misc
import (
"bytes"
"mime/multipart"
"testing"
)
// CreateFormFile creates an [io.Writer] like [mime/multipart.Writer.CreateFromFile].
// This version allows to set the mime type, too.
func TestCreateFormFile(t *testing.T) {
body := new(bytes.Buffer)
writer := multipart.NewWriter(body)
_, err := CreateFormFile(writer, "csaf", "data", "application/json")
if err != nil {
t.Errorf("failed to create an io.Writer via CreateFormFile")
}
}