Skip to content

Commit 7027767

Browse files
committed
added tests for PgInterval
1 parent e9898ec commit 7027767

File tree

2 files changed

+118
-7
lines changed

2 files changed

+118
-7
lines changed

src/backend/query_builder.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1088,7 +1088,7 @@ pub trait QueryBuilder:
10881088
write!(s, "'").unwrap();
10891089

10901090
if v.months > 0 {
1091-
write!(s, "{} MONTHS", v.days).unwrap();
1091+
write!(s, "{} MONTHS", v.months).unwrap();
10921092
space = true;
10931093
}
10941094

src/value.rs

+117-6
Original file line numberDiff line numberDiff line change
@@ -509,12 +509,12 @@ type_to_box_value!(Vec<u8>, Bytes, Binary(BlobSize::Blob(None)));
509509
type_to_box_value!(String, String, String(None));
510510

511511
#[cfg(feature = "postgres-interval")]
512-
#[derive(Debug, Eq, PartialEq, Clone, Hash)]
513-
pub struct PgIntervalValue {
514-
pub months: i32,
515-
pub days: i32,
516-
pub microseconds: i64,
517-
}
512+
#[derive(Debug, Eq, PartialEq, Copy, Clone, Hash)]
513+
pub struct PgIntervalValue {
514+
pub months: i32,
515+
pub days: i32,
516+
pub microseconds: i64,
517+
}
518518

519519
#[cfg(feature = "with-json")]
520520
#[cfg_attr(docsrs, doc(cfg(feature = "with-json")))]
@@ -1920,6 +1920,117 @@ mod tests {
19201920
);
19211921
}
19221922

1923+
#[test]
1924+
#[cfg(feature = "postgres-interval")]
1925+
fn test_pginterval_value() {
1926+
let interval = PgIntervalValue {
1927+
months: 1,
1928+
days: 2,
1929+
microseconds: 300,
1930+
};
1931+
let value: Value = interval.into();
1932+
let out: PgIntervalValue = value.unwrap();
1933+
assert_eq!(out, interval);
1934+
}
1935+
1936+
#[test]
1937+
#[cfg(feature = "postgres-interval")]
1938+
fn test_pginterval_query() {
1939+
use crate::*;
1940+
1941+
const VALUES: [(PgIntervalValue, &str); 10] = [
1942+
(
1943+
PgIntervalValue {
1944+
months: 0,
1945+
days: 0,
1946+
microseconds: 1,
1947+
},
1948+
"1 MICROSECONDS",
1949+
),
1950+
(
1951+
PgIntervalValue {
1952+
months: 0,
1953+
days: 0,
1954+
microseconds: 100,
1955+
},
1956+
"100 MICROSECONDS",
1957+
),
1958+
(
1959+
PgIntervalValue {
1960+
months: 0,
1961+
days: 1,
1962+
microseconds: 0,
1963+
},
1964+
"1 DAYS",
1965+
),
1966+
(
1967+
PgIntervalValue {
1968+
months: 0,
1969+
days: 2,
1970+
microseconds: 0,
1971+
},
1972+
"2 DAYS",
1973+
),
1974+
(
1975+
PgIntervalValue {
1976+
months: 0,
1977+
days: 2,
1978+
microseconds: 100,
1979+
},
1980+
"2 DAYS 100 MICROSECONDS",
1981+
),
1982+
(
1983+
PgIntervalValue {
1984+
months: 1,
1985+
days: 0,
1986+
microseconds: 0,
1987+
},
1988+
"1 MONTHS",
1989+
),
1990+
(
1991+
PgIntervalValue {
1992+
months: 2,
1993+
days: 0,
1994+
microseconds: 0,
1995+
},
1996+
"2 MONTHS",
1997+
),
1998+
(
1999+
PgIntervalValue {
2000+
months: 2,
2001+
days: 0,
2002+
microseconds: 100,
2003+
},
2004+
"2 MONTHS 100 MICROSECONDS",
2005+
),
2006+
(
2007+
PgIntervalValue {
2008+
months: 2,
2009+
days: 2,
2010+
microseconds: 0,
2011+
},
2012+
"2 MONTHS 2 DAYS",
2013+
),
2014+
(
2015+
PgIntervalValue {
2016+
months: 2,
2017+
days: 2,
2018+
microseconds: 100,
2019+
},
2020+
"2 MONTHS 2 DAYS 100 MICROSECONDS",
2021+
),
2022+
];
2023+
2024+
for (interval, formatted) in VALUES {
2025+
let query = Query::select().expr(interval).to_owned();
2026+
// MysqlQueryBuilder, SqliteQueryBuilder
2027+
assert_eq!(
2028+
query.to_string(PostgresQueryBuilder),
2029+
format!("SELECT '{formatted}'::interval")
2030+
);
2031+
}
2032+
}
2033+
19232034
#[test]
19242035
#[cfg(feature = "with-uuid")]
19252036
fn test_uuid_value() {

0 commit comments

Comments
 (0)