objc2-foundation 0.3.0

Bindings to the Foundation framework
Documentation
#![cfg(feature = "NSAttributedString")]
#![cfg(feature = "NSString")]
use alloc::format;
use alloc::string::ToString;

use objc2::rc::{autoreleasepool, Retained};
use objc2::runtime::AnyObject;
use objc2::ClassType;

use crate::{ns_string, NSAttributedString, NSMutableAttributedString, NSObject, NSString};

#[test]
fn test_new() {
    let s = NSAttributedString::new();
    assert_eq!(&s.string().to_string(), "");
}

#[test]
fn test_string_bound_to_attributed() {
    let attr_s = {
        let source = NSString::from_str("Hello world!");
        NSAttributedString::from_nsstring(&source)
    };
    let s = autoreleasepool(|_| attr_s.string());
    assert_eq!(s.len(), 12);
}

#[test]
fn test_from_nsstring() {
    let s = NSAttributedString::from_nsstring(ns_string!("abc"));
    assert_eq!(&s.string().to_string(), "abc");
}

#[test]
fn test_copy() {
    use crate::{NSCopying, NSMutableCopying, NSObjectProtocol};

    let s1 = NSAttributedString::from_nsstring(ns_string!("abc"));
    let s2 = s1.copy();
    // NSAttributedString performs this optimization in GNUStep's runtime,
    // but not in Apple's; so we don't test for it!
    // assert_eq!(Retained::as_ptr(&s1), Retained::as_ptr(&s2));
    assert!(s2.isKindOfClass(NSAttributedString::class()));

    let s3 = s1.mutableCopy();
    assert_ne!(Retained::as_ptr(&s1), Retained::as_ptr(&s3).cast());
    assert!(s3.isKindOfClass(NSMutableAttributedString::class()));
}

#[test]
#[cfg(feature = "NSDictionary")]
fn test_debug() {
    let s = NSAttributedString::from_nsstring(ns_string!("abc"));
    let expected = if cfg!(feature = "gnustep-1-7") {
        "abc{}"
    } else {
        "abc{\n}"
    };
    assert_eq!(format!("{s:?}"), expected);

    let obj = NSObject::new().into_super();
    let ptr: *const AnyObject = &*obj;
    let s = unsafe {
        NSAttributedString::new_with_attributes(
            ns_string!("abc"),
            &crate::NSDictionary::from_retained_objects(&[ns_string!("test")], &[obj]),
        )
    };
    let expected = if cfg!(feature = "gnustep-1-7") {
        format!("abc{{test = \"<NSObject: {ptr:?}>\"; }}")
    } else {
        format!("abc{{\n    test = \"<NSObject: {ptr:?}>\";\n}}")
    };
    assert_eq!(format!("{s:?}"), expected);
}

#[test]
fn test_new_mutable() {
    let s = NSMutableAttributedString::new();
    assert_eq!(&s.string().to_string(), "");
}

#[test]
#[cfg_attr(
    feature = "gnustep-1-7",
    ignore = "thread safety issues regarding initialization"
)]
fn test_copy_mutable() {
    use crate::{NSCopying, NSMutableCopying, NSObjectProtocol};

    let s1 = NSMutableAttributedString::from_nsstring(ns_string!("abc"));
    let s2 = s1.copy();
    assert_ne!(Retained::as_ptr(&s1).cast(), Retained::as_ptr(&s2));
    assert!(s2.isKindOfClass(NSAttributedString::class()));

    let s3 = s1.mutableCopy();
    assert_ne!(Retained::as_ptr(&s1), Retained::as_ptr(&s3));
    assert!(s3.isKindOfClass(NSMutableAttributedString::class()));
}