aboutsummaryrefslogtreecommitdiffstats
path: root/client/go/internal/admin/jvm/properties_test.go
blob: f57ecf573d2f9ff2093a28fffaa77990c610f655 (plain) (blame)
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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package jvm

import (
	"bytes"
	"testing"

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

func TestSomeQuoting(t *testing.T) {
	var buf bytes.Buffer
	propQuote("a=b", &buf)
	assert.Equal(t, "a=b", buf.String())
	buf.Reset()
	propQuote("foobar", &buf)
	assert.Equal(t, "foobar", buf.String())
	buf.Reset()
	propQuote("x y = foo bar ", &buf)
	assert.Equal(t, `x\u0020y\u0020=\u0020foo bar `, buf.String())
	buf.Reset()
	propQuote("x:y=foo:bar", &buf)
	assert.Equal(t, "x\\u003Ay=foo:bar", buf.String())
	buf.Reset()
	propQuote(`PS1=\[\e[0;32m\]AWS-US\[\e[0m\] [\u@\[\e[1m\]\h\[\e[0m\]:\w]$ `, &buf)
	assert.Equal(t, `PS1=\\[\\e[0;32m\\]AWS-US\\[\\e[0m\\] [\\u@\\[\\e[1m\\]\\h\\[\\e[0m\\]:\\w]$ `, buf.String())
}