]> git.proxmox.com Git - ceph.git/blame - ceph/src/arrow/csharp/test/Apache.Arrow.Tests/DecimalUtilityTests.cs
import quincy 17.2.0
[ceph.git] / ceph / src / arrow / csharp / test / Apache.Arrow.Tests / DecimalUtilityTests.cs
CommitLineData
1d09f67e
TL
1// Licensed to the Apache Software Foundation (ASF) under one or more
2// contributor license agreements. See the NOTICE file distributed with
3// this work for additional information regarding copyright ownership.
4// The ASF licenses this file to You under the Apache License, Version 2.0
5// (the "License"); you may not use this file except in compliance with
6// the License. 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
16using System;
17using Apache.Arrow.Types;
18using Xunit;
19
20namespace Apache.Arrow.Tests
21{
22 public class DecimalUtilityTests
23 {
24 public class Overflow
25 {
26 [Theory]
27 [InlineData(100.123, 10, 4, false)]
28 [InlineData(100.123, 6, 4, false)]
29 [InlineData(100.123, 3, 3, true)]
30 [InlineData(100.123, 10, 2, true)]
31 [InlineData(100.123, 5, 2, true)]
32 [InlineData(100.123, 5, 3, true)]
33 [InlineData(100.123, 6, 3, false)]
34 public void HasExpectedResultOrThrows(decimal d, int precision , int scale, bool shouldThrow)
35 {
36 var builder = new Decimal128Array.Builder(new Decimal128Type(precision, scale));
37
38 if (shouldThrow)
39 {
40 Assert.Throws<OverflowException>(() => builder.Append(d));
41 }
42 else
43 {
44 builder.Append(d);
45 var result = builder.Build(new TestMemoryAllocator());
46 Assert.Equal(d, result.GetValue(0));
47 }
48 }
49 }
50 }
51}