2023-05-26 14:04:17 +03:30
|
|
|
use crate::database::block_test::script::DatabaseRowTest;
|
|
|
|
use crate::database::block_test::script::RowScript::*;
|
|
|
|
use flowy_database2::entities::FieldType;
|
|
|
|
use flowy_database2::services::field::DateCellData;
|
2023-05-28 16:14:25 +08:00
|
|
|
use lib_infra::util::timestamp;
|
2023-05-26 14:04:17 +03:30
|
|
|
|
2023-05-28 16:14:25 +08:00
|
|
|
// Create a new row at the end of the grid and check the create time is valid.
|
2023-05-26 14:04:17 +03:30
|
|
|
#[tokio::test]
|
2023-05-28 16:14:25 +08:00
|
|
|
async fn created_at_field_test() {
|
2023-05-26 14:04:17 +03:30
|
|
|
let mut test = DatabaseRowTest::new().await;
|
|
|
|
let row_count = test.rows.len();
|
|
|
|
test
|
|
|
|
.run_scripts(vec![CreateEmptyRow, AssertRowCount(row_count + 1)])
|
|
|
|
.await;
|
|
|
|
|
2023-05-28 16:14:25 +08:00
|
|
|
// Get created time of the new row.
|
|
|
|
let row = test.get_rows().await.last().cloned().unwrap();
|
|
|
|
let updated_at_field = test.get_first_field(FieldType::CreatedAt);
|
|
|
|
let cell = row.cells.cell_for_field_id(&updated_at_field.id).unwrap();
|
2023-05-26 14:04:17 +03:30
|
|
|
let created_at_timestamp = DateCellData::from(cell).timestamp.unwrap();
|
|
|
|
|
2023-05-28 16:14:25 +08:00
|
|
|
assert!(created_at_timestamp > 0);
|
|
|
|
assert!(created_at_timestamp < timestamp());
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update row and check the update time is valid.
|
|
|
|
#[tokio::test]
|
|
|
|
async fn update_at_field_test() {
|
|
|
|
let mut test = DatabaseRowTest::new().await;
|
|
|
|
let row = test.get_rows().await.remove(0);
|
|
|
|
let updated_at_field = test.get_first_field(FieldType::UpdatedAt);
|
|
|
|
let cell = row.cells.cell_for_field_id(&updated_at_field.id).unwrap();
|
|
|
|
let old_updated_at = DateCellData::from(cell).timestamp.unwrap();
|
|
|
|
|
|
|
|
test
|
|
|
|
.run_script(UpdateTextCell {
|
|
|
|
row_id: row.id.clone(),
|
|
|
|
content: "test".to_string(),
|
|
|
|
})
|
|
|
|
.await;
|
2023-05-26 14:04:17 +03:30
|
|
|
|
2023-05-28 16:14:25 +08:00
|
|
|
// Get the updated time of the row.
|
|
|
|
let row = test.get_rows().await.remove(0);
|
|
|
|
let updated_at_field = test.get_first_field(FieldType::UpdatedAt);
|
2023-05-26 14:04:17 +03:30
|
|
|
let cell = row.cells.cell_for_field_id(&updated_at_field.id).unwrap();
|
2023-05-28 16:14:25 +08:00
|
|
|
let new_updated_at = DateCellData::from(cell).timestamp.unwrap();
|
2023-05-26 14:04:17 +03:30
|
|
|
|
2023-05-28 16:14:25 +08:00
|
|
|
assert!(old_updated_at < new_updated_at);
|
2023-05-26 14:04:17 +03:30
|
|
|
}
|