gerardo.laurenzi | f14a956 | 2019-10-24 07:08:34 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2018-present Open Networking Foundation |
| 3 | |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | package common |
| 17 | |
| 18 | import ( |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 19 | "context" |
Girish Gowdra | 89c985b | 2020-10-14 15:02:09 -0700 | [diff] [blame] | 20 | ic "github.com/opencord/voltha-protos/v4/go/inter_container" |
gerardo.laurenzi | f14a956 | 2019-10-24 07:08:34 +0000 | [diff] [blame] | 21 | "github.com/stretchr/testify/assert" |
Matteo Scandolo | 1530d41 | 2020-01-30 14:57:46 -0800 | [diff] [blame] | 22 | "google.golang.org/grpc/codes" |
gerardo.laurenzi | f14a956 | 2019-10-24 07:08:34 +0000 | [diff] [blame] | 23 | "strconv" |
| 24 | sp "strings" |
| 25 | "testing" |
| 26 | ) |
| 27 | |
| 28 | const sim = "0123456789abcdefABCDEF" |
| 29 | const rstr = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ" |
| 30 | |
| 31 | func TestGetSerialNumber(t *testing.T) { |
| 32 | |
| 33 | serial := GetRandomSerialNumber() |
| 34 | assert.NotNil(t, serial) |
| 35 | |
| 36 | sparsed := sp.Split(serial, ".") |
| 37 | sparsed2 := sparsed[3] |
| 38 | |
| 39 | for i := 0; i <= 2; i++ { |
| 40 | ioct, _ := strconv.ParseInt(sparsed[i], 10, 0) |
| 41 | |
| 42 | assert.True(t, ioct <= 255 && ioct >= 0, "Octect %d IP octect wrong!", i) |
| 43 | } |
| 44 | |
| 45 | sp3 := sp.Split(sparsed2, ":") |
| 46 | oct4, _ := strconv.ParseInt(sp3[0], 10, 0) |
| 47 | |
| 48 | assert.True(t, oct4 <= 255 && oct4 >= 0, "Fourth IP octect wrong!") |
| 49 | |
| 50 | port, _ := strconv.ParseInt(sp3[1], 10, 0) |
| 51 | assert.True(t, port <= 65535 && port >= 0) |
| 52 | } |
| 53 | func TestGetString(t *testing.T) { |
| 54 | str := GetRandomString(20) |
| 55 | strslide := sp.Split(str, "") |
| 56 | for i := 0; i < len(strslide); i++ { |
| 57 | assert.True(t, sp.Contains(rstr, strslide[i]), "Error! The string doesn't appears correct --> %s Expected in --> %s", str, rstr) |
| 58 | } |
| 59 | assert.NotNil(t, str) |
| 60 | } |
| 61 | func TestGetMacAddress(t *testing.T) { |
| 62 | mac := GetRandomMacAddress() |
| 63 | assert.NotNil(t, mac, "Mac address null") |
| 64 | smac := sp.Split(mac, ":") |
| 65 | assert.True(t, len(smac) == 6, "mac address not correctly formatted") |
| 66 | |
| 67 | for i := 0; i < len(smac); i++ { |
| 68 | oct := sp.Split(smac[i], "") |
| 69 | assert.True(t, sp.Contains(sim, oct[0])) |
| 70 | assert.True(t, sp.Contains(sim, oct[1])) |
| 71 | } |
| 72 | |
| 73 | } |
Matteo Scandolo | 1530d41 | 2020-01-30 14:57:46 -0800 | [diff] [blame] | 74 | |
| 75 | func TestICProxyErrorCodeToGrpcErrorCode(t *testing.T) { |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 76 | unsupported := ICProxyErrorCodeToGrpcErrorCode(context.Background(), ic.ErrorCode_UNSUPPORTED_REQUEST) |
Matteo Scandolo | 1530d41 | 2020-01-30 14:57:46 -0800 | [diff] [blame] | 77 | assert.Equal(t, unsupported, codes.Unavailable) |
| 78 | |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 79 | invalid := ICProxyErrorCodeToGrpcErrorCode(context.Background(), ic.ErrorCode_INVALID_PARAMETERS) |
Matteo Scandolo | 1530d41 | 2020-01-30 14:57:46 -0800 | [diff] [blame] | 80 | assert.Equal(t, invalid, codes.InvalidArgument) |
| 81 | |
Neha Sharma | 94f16a9 | 2020-06-26 04:17:55 +0000 | [diff] [blame] | 82 | timeout := ICProxyErrorCodeToGrpcErrorCode(context.Background(), ic.ErrorCode_DEADLINE_EXCEEDED) |
Matteo Scandolo | 1530d41 | 2020-01-30 14:57:46 -0800 | [diff] [blame] | 83 | assert.Equal(t, timeout, codes.DeadlineExceeded) |
| 84 | } |