1
0
mirror of git://jb55.com/damus synced 2024-09-19 11:43:44 +00:00

test: add test data file

We can organize test data in here
This commit is contained in:
William Casarin 2023-07-13 06:55:21 -07:00
parent c1c33518ea
commit 3845d32074

29
damus/TestData.swift Normal file
View File

@ -0,0 +1,29 @@
//
// TestData.swift
// damus
//
// Created by William Casarin on 2023-07-13.
//
import Foundation
let test_event_holder = EventHolder(events: [], incoming: [test_event])
let test_event =
NostrEvent(
content: "hello there https://jb55.com/s/Oct12-150217.png https://jb55.com/red-me.jpg cool",
pubkey: "pk",
createdAt: Int64(Date().timeIntervalSince1970 - 100)
)
func test_damus_state() -> DamusState {
let pubkey = "3efdaebb1d8923ebd99c9e7ace3b4194ab45512e2be79c1b7d68d9243e0d2681"
let damus = DamusState.empty
let prof = Profile(name: "damus", display_name: "damus", about: "iOS app!", picture: "https://damus.io/img/logo.png", banner: "", website: "https://damus.io", lud06: nil, lud16: "jb55@sendsats.lol", nip05: "damus.io", damus_donation: nil)
let tsprof = TimestampedProfile(profile: prof, timestamp: 0, event: test_event)
damus.profiles.add(id: pubkey, profile: tsprof)
return damus
}