blob: 33a56ba865fbd58ab9b35cc4e4c1b8b1de9f10e6 [file] [log] [blame]
Lorenz Brunf042e6f2020-06-24 16:46:09 +02001// Copyright 2020 The Monogon Project Authors.
2//
3// SPDX-License-Identifier: Apache-2.0
4//
5// Licensed under the Apache License, Version 2.0 (the "License");
6// you may not use this file except in compliance with the License.
7// You may obtain a copy of the License at
8//
9// http://www.apache.org/licenses/LICENSE-2.0
10//
11// Unless required by applicable law or agreed to in writing, software
12// distributed under the License is distributed on an "AS IS" BASIS,
13// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14// See the License for the specific language governing permissions and
15// limitations under the License.
16
17package jsonpatch
18
19import (
20 "testing"
21)
22
23func TestEncodeJSONRefToken(t *testing.T) {
24 tests := []struct {
25 name string
26 token string
27 want string
28 }{
29 {"Passes through normal characters", "asdf123", "asdf123"},
30 {"Encodes simple slashes", "a/b", "a~1b"},
31 {"Encodes tildes", "m~n", "m~0n"},
32 {"Encodes bot tildes and slashes", "a/m~n", "a~1m~0n"},
33 }
34 for _, tt := range tests {
35 t.Run(tt.name, func(t *testing.T) {
36 if got := EncodeJSONRefToken(tt.token); got != tt.want {
37 t.Errorf("EncodeJSONRefToken() = %v, want %v", got, tt.want)
38 }
39 })
40 }
41}
42
43func TestPointerFromParts(t *testing.T) {
44 type args struct {
45 pathParts []string
46 }
47 tests := []struct {
48 name string
49 args args
50 want string
51 }{
52 {"Empty path", args{[]string{}}, ""},
53 {"Single level path", args{[]string{"foo"}}, "/foo"},
54 {"Multi-level path", args{[]string{"foo", "0"}}, "/foo/0"},
55 {"Path starting with empty key", args{[]string{""}}, "/"},
56 {"Path with part containing /", args{[]string{"a/b"}}, "/a~1b"},
57 {"Path with part containing spaces", args{[]string{" "}}, "/ "},
58 }
59 for _, tt := range tests {
60 t.Run(tt.name, func(t *testing.T) {
61 if got := PointerFromParts(tt.args.pathParts); got != tt.want {
62 t.Errorf("PointerFromParts() = %v, want %v", got, tt.want)
63 }
64 })
65 }
66}