2014-11-16 20:13:20 +00:00
|
|
|
// Copyright (C) 2014 The Syncthing Authors.
|
2014-09-29 19:43:32 +00:00
|
|
|
//
|
2015-03-07 20:36:35 +00:00
|
|
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
// You can obtain one at http://mozilla.org/MPL/2.0/.
|
2014-08-19 10:43:50 +00:00
|
|
|
|
2014-11-24 09:58:57 +00:00
|
|
|
package versioner
|
2014-08-19 10:43:50 +00:00
|
|
|
|
2014-11-25 21:27:10 +00:00
|
|
|
import (
|
|
|
|
"path/filepath"
|
|
|
|
"testing"
|
|
|
|
)
|
2014-11-24 09:58:57 +00:00
|
|
|
|
|
|
|
func TestTaggedFilename(t *testing.T) {
|
|
|
|
cases := [][3]string{
|
2014-11-25 21:27:10 +00:00
|
|
|
{filepath.Join("foo", "bar.baz"), "tag", filepath.Join("foo", "bar~tag.baz")},
|
2014-11-24 09:58:57 +00:00
|
|
|
{"bar.baz", "tag", "bar~tag.baz"},
|
|
|
|
{"bar", "tag", "bar~tag"},
|
2014-11-25 22:32:18 +00:00
|
|
|
{"~$ufheft2.docx", "20140612-200554", "~$ufheft2~20140612-200554.docx"},
|
|
|
|
{"alle~4.mgz", "20141106-094415", "alle~4~20141106-094415.mgz"},
|
2014-11-24 09:58:57 +00:00
|
|
|
|
|
|
|
// Parsing test only
|
|
|
|
{"", "tag-only", "foo/bar.baz~tag-only"},
|
|
|
|
{"", "tag-only", "bar.baz~tag-only"},
|
2014-11-25 22:32:18 +00:00
|
|
|
{"", "20140612-200554", "~$ufheft2.docx~20140612-200554"},
|
|
|
|
{"", "20141106-094415", "alle~4.mgz~20141106-094415"},
|
2014-11-24 09:58:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range cases {
|
|
|
|
if tc[0] != "" {
|
|
|
|
// Test tagger
|
|
|
|
tf := taggedFilename(tc[0], tc[1])
|
|
|
|
if tf != tc[2] {
|
|
|
|
t.Errorf("%s != %s", tf, tc[2])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test parser
|
|
|
|
tag := filenameTag(tc[2])
|
|
|
|
if tag != tc[1] {
|
|
|
|
t.Errorf("%s != %s", tag, tc[1])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|