aboutsummaryrefslogtreecommitdiffstats
path: root/modules/csv/csv_test.go
blob: 9b7fa1f4fafc2f162a56f5d8487d3fe3308aaa04 (plain)
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
// Copyright 2021 The Gitea Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.

package csv

import (
	"bytes"
	"strings"
	"testing"

	"github.com/stretchr/testify/assert"
)

func TestCreateReader(t *testing.T) {
	rd := CreateReader(bytes.NewReader([]byte{}), ',')
	assert.Equal(t, ',', rd.Comma)
}

//nolint
func TestCreateReaderAndGuessDelimiter(t *testing.T) {
	var csvToRowsMap = map[string][][]string{
		`a;b;c
1;2;3
4;5;6`: {{"a", "b", "c"}, {"1", "2", "3"}, {"4", "5", "6"}},
		`col1	col2	col3
a	b	c
	e	f
g	h	i
j		l
m	n	
p	q	r
		u
v	w	x
y		
		`: {{"col1", "col2", "col3"},
			{"a", "b", "c"},
			{"", "e", "f"},
			{"g", "h", "i"},
			{"j", "", "l"},
			{"m", "n", ""},
			{"p", "q", "r"},
			{"", "", "u"},
			{"v", "w", "x"},
			{"y", "", ""},
			{"", "", ""}},
		` col1,col2,col3
 a, b, c
d,e,f
 ,h, i
j, , 
 , , `: {{"col1", "col2", "col3"},
			{"a", "b", "c"},
			{"d", "e", "f"},
			{"", "h", "i"},
			{"j", "", ""},
			{"", "", ""}},
	}

	for csv, expectedRows := range csvToRowsMap {
		rd, err := CreateReaderAndGuessDelimiter(strings.NewReader(csv))
		assert.NoError(t, err)
		rows, err := rd.ReadAll()
		assert.NoError(t, err)
		assert.EqualValues(t, rows, expectedRows)
	}
}

func TestGuessDelimiter(t *testing.T) {
	var csvToDelimiterMap = map[string]rune{
		"a":                         ',',
		"1,2":                       ',',
		"1;2":                       ';',
		"1\t2":                      '\t',
		"1|2":                       '|',
		"1,2,3;4,5,6;7,8,9\na;b;c":  ';',
		"\"1,2,3,4\";\"a\nb\"\nc;d": ';',
		"<br/>":                     ',',
	}

	for csv, expectedDelimiter := range csvToDelimiterMap {
		assert.EqualValues(t, guessDelimiter([]byte(csv)), expectedDelimiter)
	}
}