fix tests
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 1m37s
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 1m37s
This commit is contained in:
parent
b2b9b40792
commit
6b211d1443
@ -1,7 +1,6 @@
|
|||||||
package googleapi
|
package googleapi
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
|
||||||
"gogs.mikescher.com/BlackForestBytes/goext/tst"
|
"gogs.mikescher.com/BlackForestBytes/goext/tst"
|
||||||
"os"
|
"os"
|
||||||
"testing"
|
"testing"
|
||||||
@ -18,7 +17,7 @@ func TestEncodeMimeMail(t *testing.T) {
|
|||||||
MailBody{Plain: "Plain Text"},
|
MailBody{Plain: "Plain Text"},
|
||||||
nil)
|
nil)
|
||||||
|
|
||||||
fmt.Printf("%s\n\n", mail)
|
verifyMime(mail)
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestEncodeMimeMail2(t *testing.T) {
|
func TestEncodeMimeMail2(t *testing.T) {
|
||||||
@ -35,7 +34,7 @@ func TestEncodeMimeMail2(t *testing.T) {
|
|||||||
},
|
},
|
||||||
nil)
|
nil)
|
||||||
|
|
||||||
fmt.Printf("%s\n\n", mail)
|
verifyMime(mail)
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestEncodeMimeMail3(t *testing.T) {
|
func TestEncodeMimeMail3(t *testing.T) {
|
||||||
@ -53,12 +52,12 @@ func TestEncodeMimeMail3(t *testing.T) {
|
|||||||
{Data: []byte("HelloWorld"), Filename: "test.txt", IsInline: false, ContentType: "text/plain"},
|
{Data: []byte("HelloWorld"), Filename: "test.txt", IsInline: false, ContentType: "text/plain"},
|
||||||
})
|
})
|
||||||
|
|
||||||
fmt.Printf("%s\n\n", mail)
|
verifyMime(mail)
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestEncodeMimeMail4(t *testing.T) {
|
func TestEncodeMimeMail4(t *testing.T) {
|
||||||
|
|
||||||
b := tst.Must(os.ReadFile("/home/mike/Pictures/Screenshot_20220706_190205.png"))(t)
|
b := tst.Must(os.ReadFile("test_placeholder.png"))(t)
|
||||||
|
|
||||||
mail := encodeMimeMail(
|
mail := encodeMimeMail(
|
||||||
"noreply@heydyno.de",
|
"noreply@heydyno.de",
|
||||||
@ -73,5 +72,9 @@ func TestEncodeMimeMail4(t *testing.T) {
|
|||||||
{Data: b, Filename: "img.png", IsInline: true, ContentType: "image/png"},
|
{Data: b, Filename: "img.png", IsInline: true, ContentType: "image/png"},
|
||||||
})
|
})
|
||||||
|
|
||||||
fmt.Printf("%s\n\n", mail)
|
verifyMime(mail)
|
||||||
|
}
|
||||||
|
|
||||||
|
func verifyMime(mail string) {
|
||||||
|
//fmt.Printf("%s\n\n", mail)
|
||||||
}
|
}
|
||||||
|
@ -127,7 +127,7 @@ func TestSendMail4(t *testing.T) {
|
|||||||
|
|
||||||
gclient := NewGoogleClient(auth)
|
gclient := NewGoogleClient(auth)
|
||||||
|
|
||||||
b := tst.Must(os.ReadFile("/home/mike/Pictures/Screenshot_20220706_190205.png"))(t)
|
b := tst.Must(os.ReadFile("test_placeholder.png"))(t)
|
||||||
|
|
||||||
mail, err := gclient.SendMail(
|
mail, err := gclient.SendMail(
|
||||||
ctx,
|
ctx,
|
||||||
|
BIN
googleapi/test_placeholder.png
Normal file
BIN
googleapi/test_placeholder.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 11 KiB |
Loading…
Reference in New Issue
Block a user