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
|
// Copyright 2016 The Cockroach Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
// implied. See the License for the specific language governing
// permissions and limitations under the License.
package apd
import "testing"
// Appease the unused test.
// TODO(mjibson): actually test all the ErrDecimal methods.
func TestErrDecimal(t *testing.T) {
ed := MakeErrDecimal(testCtx)
a := New(1, 0)
ed.Abs(a, a)
ed.Exp(a, a)
ed.Ln(a, a)
ed.Log10(a, a)
ed.Neg(a, a)
ed.Pow(a, a, a)
ed.QuoInteger(a, a, a)
ed.Rem(a, a, a)
ed.Round(a, a)
}
// TestMakeErrDecimalWithPrecision tests that WithPrecision generates a copy
// and not a reference.
func TestMakeErrDecimalWithPrecision(t *testing.T) {
c := &Context{
Precision: 5,
MaxExponent: 2,
}
nc := c.WithPrecision(c.Precision * 2)
ed := MakeErrDecimal(nc)
if ed.Ctx.Precision != 10 {
t.Fatalf("expected %d, got %d", 10, ed.Ctx.Precision)
}
if c.Precision != 5 {
t.Fatalf("expected %d, got %d", 5, c.Precision)
}
if c.MaxExponent != 2 {
t.Fatalf("expected %d, got %d", 2, c.MaxExponent)
}
}
|