-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
107 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module gorm-hierarchyid | ||
|
||
go 1.22.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,14 @@ | ||
package gormhierarchyid | ||
package main | ||
|
||
// Parse takes a byte slice and returns a slice of integers representing the hierarchyid | ||
// | ||
// data. The byte slice is expected to be in the format of a hierarchyid data type from | ||
// SQL Server. The format is a string of integers separated by slashes. For example, \1\2\3\ | ||
func Parse(data []byte) ([]int, error) { | ||
var levels []int = make([]int, 0) | ||
if len(data) == 0 { | ||
return levels, nil | ||
} | ||
|
||
return levels, nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,93 @@ | ||
package gormhierarchyid | ||
|
||
// Parse takes a byte slice and returns a slice of integers representing the hierarchyid | ||
// | ||
// data. The byte slice is expected to be in the format of a hierarchyid data type from | ||
// SQL Server. The format is a string of integers separated by slashes. For example, \1\2\3\ | ||
func Parse(data []byte) ([]int, error) { | ||
var levels []int = make([]int, 0) | ||
if len(data) == 0 { | ||
return levels, nil | ||
package main | ||
|
||
import ( | ||
"encoding/hex" | ||
"slices" | ||
"testing" | ||
) | ||
|
||
func TestParse(t *testing.T) { | ||
type TestData struct { | ||
output []int | ||
input string | ||
} | ||
|
||
var data []TestData = []TestData{ | ||
{nil, ""}, | ||
{[]int{0}, "48"}, | ||
{[]int{1}, "58"}, | ||
{[]int{2}, "68"}, | ||
{[]int{3}, "78"}, | ||
{[]int{4}, "84"}, | ||
{[]int{5}, "8C"}, | ||
{[]int{6}, "94"}, | ||
{[]int{7}, "9C"}, | ||
{[]int{8}, "A2"}, | ||
{[]int{9}, "A6"}, | ||
{[]int{10}, "AA"}, | ||
{[]int{11}, "AE"}, | ||
{[]int{12}, "B2"}, | ||
{[]int{13}, "B6"}, | ||
{[]int{14}, "BA"}, | ||
{[]int{15}, "BE"}, | ||
{[]int{16}, "C110"}, | ||
{[]int{17}, "C130"}, | ||
{[]int{18}, "C150"}, | ||
{[]int{19}, "C170"}, | ||
{[]int{20}, "C190"}, | ||
{[]int{21}, "C1B0"}, | ||
{[]int{22}, "C1D0"}, | ||
{[]int{23}, "C1F0"}, | ||
{[]int{24}, "C310"}, | ||
{[]int{32}, "C910"}, | ||
{[]int{40}, "CB10"}, | ||
{[]int{48}, "D110"}, | ||
{[]int{56}, "D310"}, | ||
{[]int{64}, "D910"}, | ||
{[]int{72}, "DB10"}, | ||
{[]int{80}, "E00440"}, | ||
{[]int{88}, "E00C40"}, | ||
{[]int{96}, "E02440"}, | ||
{[]int{128}, "E06440"}, | ||
{[]int{136}, "E06C40"}, | ||
{[]int{192}, "E0E440"}, | ||
{[]int{320}, "E2E440"}, | ||
{[]int{576}, "E6E440"}, | ||
{[]int{1088}, "EEE440"}, | ||
{[]int{1104}, "F00088"}, | ||
{[]int{2128}, "F20088"}, | ||
{[]int{3152}, "F40088"}, | ||
{[]int{4176}, "F60088"}, | ||
{[]int{5200}, "F80000000220"}, | ||
{[]int{3, 1}, "7AC0"}, | ||
{[]int{1, 1}, "5AC0"}, | ||
{[]int{2, 1}, "6AC0"}, | ||
{[]int{2, 1, 1}, "6AD6"}, | ||
{[]int{1, 1, 2}, "5ADA"}, | ||
{[]int{1, 1, 3}, "5ADE"}, | ||
{[]int{1, 2, 754}, "5B7A9150"}, | ||
{[]int{1, 1, 4}, "5AE1"}, | ||
{[]int{1, 1, 1}, "5AD6"}, | ||
{[]int{1, 1, 1, 1}, "5AD6B0"}, | ||
{[]int{2, 1, 1, 3}, "6AD6F0"}, | ||
{[]int{2, 1, 1, 1}, "6AD6B0"}, | ||
{[]int{2, 1, 1, 2}, "6AD6D0"}, | ||
{[]int{1, 1, 1, 1, 1}, "5AD6B580"}, | ||
} | ||
|
||
return levels, nil | ||
for _, d := range data { | ||
input, err := hex.DecodeString(d.input) | ||
if err != nil { | ||
t.Errorf("Error decoding %v: %v", d.input, err) | ||
} | ||
|
||
result, err := Parse(input) | ||
if err != nil { | ||
t.Errorf("Error parsing %v: %v", d.input, err) | ||
} | ||
|
||
if !slices.Equal(result, d.output) { | ||
t.Errorf("Expected 0x%v to return %v, got %v", d.input, d.output, result) | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,4 @@ package main | |
|
||
func main() { | ||
|
||
print("asdasasdsadsd") | ||
|
||
print("Test 123") | ||
} |