summaryrefslogtreecommitdiffstats
path: root/model/version_test.go
blob: 869ed8ad061e7c4e29625dc2c0eee669752cf0a9 (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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

package model

import (
	"fmt"
	"testing"
)

func TestSplitVersion(t *testing.T) {
	major1, minor1, patch1 := SplitVersion("junk")
	if major1 != 0 || minor1 != 0 || patch1 != 0 {
		t.Fatal()
	}

	major2, minor2, patch2 := SplitVersion("1.2.3")
	if major2 != 1 || minor2 != 2 || patch2 != 3 {
		t.Fatal()
	}

	major3, minor3, patch3 := SplitVersion("1.2")
	if major3 != 1 || minor3 != 2 || patch3 != 0 {
		t.Fatal()
	}

	major4, minor4, patch4 := SplitVersion("1")
	if major4 != 1 || minor4 != 0 || patch4 != 0 {
		t.Fatal()
	}

	major5, minor5, patch5 := SplitVersion("1.2.3.junkgoeswhere")
	if major5 != 1 || minor5 != 2 || patch5 != 3 {
		t.Fatal()
	}
}

func TestGetPreviousVersion(t *testing.T) {
	if GetPreviousVersion("1.3.0") != "1.2.0" {
		t.Fatal()
	}

	if GetPreviousVersion("1.2.1") != "1.1.0" {
		t.Fatal()
	}

	if GetPreviousVersion("1.1.0") != "1.0.0" {
		t.Fatal()
	}

	if GetPreviousVersion("1.0.0") != "0.7.0" {
		t.Fatal()
	}

	if GetPreviousVersion("0.7.1") != "0.6.0" {
		t.Fatal()
	}

	if GetPreviousVersion("0.5.0") != "" {
		t.Fatal()
	}
}

func TestIsCurrentVersion(t *testing.T) {
	major, minor, patch := SplitVersion(CurrentVersion)

	if !IsCurrentVersion(CurrentVersion) {
		t.Fatal()
	}

	if !IsCurrentVersion(fmt.Sprintf("%v.%v.%v", major, minor, patch+100)) {
		t.Fatal()
	}

	if IsCurrentVersion(fmt.Sprintf("%v.%v.%v", major, minor+1, patch)) {
		t.Fatal()
	}

	if IsCurrentVersion(fmt.Sprintf("%v.%v.%v", major+1, minor, patch)) {
		t.Fatal()
	}
}

func TestIsPreviousVersionsSupported(t *testing.T) {

	if !IsPreviousVersionsSupported(versionsWithoutHotFixes[0]) {
		t.Fatal()
	}

	if !IsPreviousVersionsSupported(versionsWithoutHotFixes[1]) {
		t.Fatal()
	}

	if !IsPreviousVersionsSupported(versionsWithoutHotFixes[2]) {
		t.Fatal()
	}

	if IsPreviousVersionsSupported(versionsWithoutHotFixes[4]) {
		t.Fatal()
	}

	if IsPreviousVersionsSupported(versionsWithoutHotFixes[5]) {
		t.Fatal()
	}
}