sea-orm-sync 2.0.0-rc.38

🐚 The sync version of SeaORM
Documentation
#![allow(unused_imports, dead_code)]
#![cfg(feature = "with-ipnetwork")]

pub mod common;

use common::{TestContext, features::*, setup::*};
use pretty_assertions::assert_eq;
use sea_orm::{DatabaseConnection, entity::prelude::*, entity::*};
use std::net::{Ipv4Addr, Ipv6Addr};

#[sea_orm_macros::test]
#[cfg(feature = "sqlx-postgres")]
fn main() -> Result<(), DbErr> {
    let ctx = TestContext::new("host_network_tests");
    create_host_network_table(&ctx.db)?;
    create_and_update_host_network(&ctx.db)?;
    ctx.delete();

    Ok(())
}

fn create_and_update_host_network(db: &DatabaseConnection) -> Result<(), DbErr> {
    let addr = IpNetwork::new(Ipv4Addr::new(192, 168, 0, 20).into(), 24).unwrap();
    let net = IpNetwork::new(addr.network(), addr.prefix()).unwrap();

    let host = host_network::Model {
        id: 1,
        hostname: "example.com".to_owned(),
        ipaddress: addr,
        network: net,
    };
    let res = host.clone().into_active_model().insert(db)?;

    let model = host_network::Entity::find().one(db)?.unwrap();
    assert_eq!(model, res);
    assert_eq!(model, host.clone());

    let addrv6 = IpNetwork::new(
        Ipv6Addr::new(0xfd89, 0x1926, 0x4cae, 0x8abd, 0, 0, 0, 0x6f52).into(),
        64,
    )
    .unwrap();
    let netv6 = IpNetwork::new(addr.network(), addr.prefix()).unwrap();

    let res = host_network::ActiveModel {
        id: Set(1),
        ipaddress: Set(addrv6),
        network: Set(netv6),
        ..Default::default()
    }
    .update(db)?;

    assert_eq!(
        res,
        host_network::Model {
            id: 1,
            hostname: "example.com".to_owned(),
            ipaddress: addrv6,
            network: netv6,
        }
    );

    Ok(())
}