mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-21 20:49:10 +01:00
668a6f4e9e
GitOrigin-RevId: 1cd8a1cdb3d45876003ad3ccddd4d466cd9fb66c
130 lines
5.8 KiB
JavaScript
130 lines
5.8 KiB
JavaScript
import "jstests/libs/query/sbe_assert_error_override.js";
|
|
|
|
const coll = db.getSiblingDB(jsTestName()).coll;
|
|
coll.drop();
|
|
|
|
function getResultOfExpression(expr) {
|
|
const resultArray = coll.aggregate({$project: {computed: expr}}).toArray();
|
|
assert.eq(1, resultArray.length, "ERROR from " + tojson(expr));
|
|
return resultArray[0].computed;
|
|
}
|
|
|
|
assert.commandWorked(coll.insert({
|
|
_id: 0,
|
|
decimalVal: NumberDecimal("819.5359123621083"),
|
|
doubleVal: 819.536,
|
|
int64Val: NumberLong(820),
|
|
int32Val: NumberInt(820),
|
|
dateVal: ISODate("2019-01-30T07:30:10.137Z"),
|
|
overflowDecimal: NumberDecimal("1e5000"),
|
|
overflowDouble: 1e1000,
|
|
overflowInt64: NumberLong("9223372036854775807"),
|
|
nanDouble: NaN,
|
|
nanDecimal: NumberDecimal("NaN"),
|
|
}));
|
|
|
|
// Adding a Decimal128 value to a date literal.
|
|
assert.eq(ISODate("2019-01-30T07:30:10.957Z"),
|
|
getResultOfExpression({$add: ["$decimalVal", ISODate("2019-01-30T07:30:10.137Z")]}));
|
|
assert.eq(ISODate("2019-01-30T07:30:10.957Z"),
|
|
getResultOfExpression({$add: [ISODate("2019-01-30T07:30:10.137Z"), "$decimalVal"]}));
|
|
|
|
// Adding a Decimal128 literal to a date value.
|
|
assert.eq(ISODate("2019-01-30T07:30:10.957Z"),
|
|
getResultOfExpression({$add: ["$dateVal", NumberDecimal("819.5359123621083")]}));
|
|
assert.eq(ISODate("2019-01-30T07:30:10.957Z"),
|
|
getResultOfExpression({$add: [NumberDecimal("819.5359123621083"), "$dateVal"]}));
|
|
|
|
// Adding a Decimal128 value to a date value.
|
|
assert.eq(ISODate("2019-01-30T07:30:10.957Z"),
|
|
getResultOfExpression({$add: ["$dateVal", "$decimalVal"]}));
|
|
assert.eq(ISODate("2019-01-30T07:30:10.957Z"),
|
|
getResultOfExpression({$add: ["$decimalVal", "$dateVal"]}));
|
|
|
|
// Adding a double value to a date value.
|
|
assert.eq(ISODate("2019-01-30T07:30:10.957Z"),
|
|
getResultOfExpression({$add: ["$dateVal", "$doubleVal"]}));
|
|
assert.eq(ISODate("2019-01-30T07:30:10.957Z"),
|
|
getResultOfExpression({$add: ["$doubleVal", "$dateVal"]}));
|
|
|
|
// Adding an int64_t value to date value.
|
|
assert.eq(ISODate("2019-01-30T07:30:10.957Z"),
|
|
getResultOfExpression({$add: ["$dateVal", "$int64Val"]}));
|
|
assert.eq(ISODate("2019-01-30T07:30:10.957Z"),
|
|
getResultOfExpression({$add: ["$int64Val", "$dateVal"]}));
|
|
|
|
// Adding an int32_t value to date value.
|
|
assert.eq(ISODate("2019-01-30T07:30:10.957Z"),
|
|
getResultOfExpression({$add: ["$dateVal", "$int32Val"]}));
|
|
assert.eq(ISODate("2019-01-30T07:30:10.957Z"),
|
|
getResultOfExpression({$add: ["$int32Val", "$dateVal"]}));
|
|
|
|
// Addition with a date and multiple values of differing data types.
|
|
assert.eq(ISODate("2019-01-30T07:30:12.597Z"),
|
|
getResultOfExpression({$add: ["$dateVal", "$decimalVal", "$doubleVal", "$int64Val"]}));
|
|
assert.eq(ISODate("2019-01-30T07:30:12.597Z"),
|
|
getResultOfExpression({$add: ["$decimalVal", "$dateVal", "$doubleVal", "$int64Val"]}));
|
|
assert.eq(ISODate("2019-01-30T07:30:12.596Z"),
|
|
getResultOfExpression({$add: ["$decimalVal", "$doubleVal", "$int64Val", "$dateVal"]}));
|
|
// The result of an addition must remain in the range of int64_t in order to convert back to a Date;
|
|
// an overflow into the domain of double-precision floating point numbers triggers a query-fatal
|
|
// error.
|
|
assert.throwsWithCode(() => getResultOfExpression({$add: ["$dateVal", "$overflowDouble"]}),
|
|
ErrorCodes.Overflow);
|
|
|
|
assert.throwsWithCode(() => getResultOfExpression({$add: ["$dateVal", "$overflowInt64"]}),
|
|
ErrorCodes.Overflow);
|
|
|
|
assert.throwsWithCode(
|
|
() => getResultOfExpression({$add: ["$dateVal", "$int64Val", "$overflowDouble"]}),
|
|
ErrorCodes.Overflow);
|
|
|
|
assert.throwsWithCode(
|
|
() => getResultOfExpression({$add: ["$int64Val", "$dateVal", "$overflowDouble"]}),
|
|
ErrorCodes.Overflow);
|
|
|
|
// An overflow into the domain of Decimal128 results in an overflow exception.
|
|
assert.throwsWithCode(() => getResultOfExpression({$add: ["$dateVal", "$overflowDecimal"]}),
|
|
ErrorCodes.Overflow);
|
|
assert.throwsWithCode(
|
|
() => getResultOfExpression({$add: ["$int64Val", "$dateVal", "$overflowDecimal"]}),
|
|
ErrorCodes.Overflow);
|
|
assert.throwsWithCode(
|
|
() => getResultOfExpression({$add: ["$dateVal", "$overflowDouble", "$overflowDecimal"]}),
|
|
ErrorCodes.Overflow);
|
|
|
|
// Adding a double-typed NaN to a date value.
|
|
assert.throwsWithCode(() => getResultOfExpression({$add: ["$dateVal", "$nanDouble"]}),
|
|
ErrorCodes.Overflow);
|
|
|
|
assert.throwsWithCode(() => getResultOfExpression({$add: ["$nanDouble", "$dateVal"]}),
|
|
ErrorCodes.Overflow);
|
|
|
|
// An NaN Decimal128 added to date results in an overflow exception.
|
|
assert.throwsWithCode(() => getResultOfExpression({$add: ["$dateVal", "$nanDecimal"]}),
|
|
ErrorCodes.Overflow);
|
|
assert.throwsWithCode(() => getResultOfExpression({$add: ["$nanDecimal", "$dateVal"]}),
|
|
ErrorCodes.Overflow);
|
|
|
|
// Addition with a date, a double-typed NaN, and a third value.
|
|
assert.throwsWithCode(() => getResultOfExpression({$add: ["$dateVal", "$doubleVal", "$nanDouble"]}),
|
|
ErrorCodes.Overflow);
|
|
|
|
// Addition with a date, and both types of NaN.
|
|
assert.throwsWithCode(
|
|
() => getResultOfExpression({$add: ["$dateVal", "$nanDouble", "$nanDecimal"]}),
|
|
ErrorCodes.Overflow);
|
|
|
|
// Throw error when there're two or more date in $add.
|
|
assert.throwsWithCode(() => getResultOfExpression({$add: ["$dateVal", 1, "$dateVal"]}), 4974202);
|
|
|
|
// Test very large long and verify that we're maintaining the precision of long arithmetic.
|
|
// 2397083434877565865 and 239708343487756586 both cast to the same double value from longs
|
|
assert.eq(ISODate("2019-01-30T07:30:10.958Z"), getResultOfExpression({
|
|
$add: [
|
|
"$dateVal",
|
|
NumberLong("2397083434877565865"),
|
|
"$doubleVal",
|
|
NumberLong("-2397083434877565864")
|
|
]
|
|
})); |