t0051-object.sh 12.6 KB
Newer Older
Łukasz Magiera's avatar
Łukasz Magiera committed
1
#!/usr/bin/env bash
2 3 4 5 6 7 8 9 10 11 12
#
# Copyright (c) 2015 Henry Bubert
# MIT Licensed; see the LICENSE file in this repository.
#

test_description="Test object command"

. lib/test-lib.sh

test_init_ipfs

13
test_patch_create_path() {
Łukasz Magiera's avatar
Łukasz Magiera committed
14 15 16 17 18 19 20 21 22 23 24 25 26
  root=$1
  name=$2
  target=$3

  test_expect_success "object patch --create works" '
    PCOUT=$(ipfs object patch $root add-link --create $name $target)
  '

  test_expect_success "output looks good" '
    ipfs cat "$PCOUT/$name" >tpcp_out &&
    ipfs cat "$target" >tpcp_exp &&
    test_cmp tpcp_exp tpcp_out
  '
27 28
}

29 30
test_object_cmd() {

Łukasz Magiera's avatar
Łukasz Magiera committed
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
  test_expect_success "'ipfs add testData' succeeds" '
    printf "Hello Mars" >expected_in &&
    ipfs add expected_in >actual_Addout
  '

  test_expect_success "'ipfs add testData' output looks good" '
    HASH="QmWkHFpYBZ9mpPRreRbMhhYWXfUhBAue3JkbbpFqwowSRb" &&
    echo "added $HASH expected_in" >expected_Addout &&
    test_cmp expected_Addout actual_Addout
  '

  test_expect_success "'ipfs object get' succeeds" '
    ipfs object get $HASH >actual_getOut
  '

  test_expect_success "'ipfs object get' output looks good" '
    test_cmp ../t0051-object-data/expected_getOut actual_getOut
  '

50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66
  test_expect_success "'ipfs object get' can specify data encoding as base64" '
    ipfs object get --data-encoding base64 $HASH > obj_out &&
    echo "{\"Links\":[],\"Data\":\"CAISCkhlbGxvIE1hcnMYCg==\"}" > obj_exp &&
    test_cmp obj_out obj_exp
  '

  test_expect_success "'ipfs object get' can specify data encoding as text" '
    echo "{\"Links\":[],\"Data\":\"Hello Mars\"}" | ipfs object put &&
    ipfs object get --data-encoding text QmS3hVY6eYrMQ6L22agwrx3YHBEsc3LJxVXCtyQHqRBukH > obj_out &&
    echo "{\"Links\":[],\"Data\":\"Hello Mars\"}" > obj_exp &&
    test_cmp obj_out obj_exp
  '

  test_expect_failure "'ipfs object get' requires known data encoding" '
    ipfs object get --data-encoding nonsensical-encoding $HASH
  '

Łukasz Magiera's avatar
Łukasz Magiera committed
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
  test_expect_success "'ipfs object stat' succeeds" '
    ipfs object stat $HASH >actual_stat
  '

  test_expect_success "'ipfs object get' output looks good" '
    echo "NumLinks: 0" > expected_stat &&
    echo "BlockSize: 18" >> expected_stat &&
    echo "LinksSize: 2" >> expected_stat &&
    echo "DataSize: 16" >> expected_stat &&
    echo "CumulativeSize: 18" >> expected_stat &&
    test_cmp expected_stat actual_stat
  '

  test_expect_success "'ipfs object put file.json' succeeds" '
    ipfs object put  ../t0051-object-data/testPut.json > actual_putOut
  '

  test_expect_success "'ipfs object put file.json' output looks good" '
    HASH="QmUTSAdDi2xsNkDtLqjFgQDMEn5di3Ab9eqbrt4gaiNbUD" &&
    printf "added $HASH\n" > expected_putOut &&
    test_cmp expected_putOut actual_putOut
  '

Łukasz Magiera's avatar
Łukasz Magiera committed
90 91 92 93 94 95 96 97 98 99
  test_expect_success "'ipfs object put --quiet file.json' succeeds" '
    ipfs object put --quiet ../t0051-object-data/testPut.json > actual_putOut
  '

  test_expect_success "'ipfs object put --quiet file.json' output looks good" '
    HASH="QmUTSAdDi2xsNkDtLqjFgQDMEn5di3Ab9eqbrt4gaiNbUD" &&
    printf "$HASH\n" > expected_putOut &&
    test_cmp expected_putOut actual_putOut
  '

Łukasz Magiera's avatar
Łukasz Magiera committed
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225
  test_expect_success "'ipfs object put file.xml' succeeds" '
    ipfs object put  ../t0051-object-data/testPut.xml --inputenc=xml > actual_putOut
  '

  test_expect_success "'ipfs object put file.xml' output looks good" '
    HASH="QmQzNKUHy4HyEUGkqKe3q3t796ffPLQXYCkHCcXUNT5JNK" &&
    printf "added $HASH\n" > expected_putOut &&
    test_cmp expected_putOut actual_putOut
  '

  test_expect_success "'ipfs object put' from stdin succeeds" '
    cat ../t0051-object-data/testPut.xml | ipfs object put --inputenc=xml > actual_putStdinOut
  '

  test_expect_success "'ipfs object put broken.xml' should fail" '
    test_expect_code 1 ipfs object put ../t0051-object-data/brokenPut.xml --inputenc=xml 2>actual_putBrokenErr >actual_putBroken
  '

  test_expect_success "'ipfs object put broken.hxml' output looks good" '
    touch expected_putBroken &&
    printf "Error: no data or links in this node\n" > expected_putBrokenErr &&
    test_cmp expected_putBroken actual_putBroken &&
    test_cmp expected_putBrokenErr actual_putBrokenErr
  '
  test_expect_success "'ipfs object get --enc=xml' succeeds" '
    ipfs object get --enc=xml $HASH >utf8_xml
  '

  test_expect_success "'ipfs object put --inputenc=xml' succeeds" '
    ipfs object put --inputenc=xml <utf8_xml >actual
  '

  test_expect_failure "'ipfs object put --inputenc=xml' output looks good" '
    echo "added $HASH\n" >expected &&
    test_cmp expected actual
  '

  test_expect_success "'ipfs object put file.pb' succeeds" '
    ipfs object put --inputenc=protobuf ../t0051-object-data/testPut.pb > actual_putOut
  '

  test_expect_success "'ipfs object put file.pb' output looks good" '
    HASH="QmUTSAdDi2xsNkDtLqjFgQDMEn5di3Ab9eqbrt4gaiNbUD" &&
    printf "added $HASH\n" > expected_putOut &&
    test_cmp expected_putOut actual_putOut
  '

  test_expect_success "'ipfs object put' from stdin succeeds" '
    cat ../t0051-object-data/testPut.json | ipfs object put > actual_putStdinOut
  '

  test_expect_success "'ipfs object put' from stdin output looks good" '
    HASH="QmUTSAdDi2xsNkDtLqjFgQDMEn5di3Ab9eqbrt4gaiNbUD" &&
    printf "added $HASH\n" > expected_putStdinOut &&
    test_cmp expected_putStdinOut actual_putStdinOut
  '

  test_expect_success "'ipfs object put' from stdin (pb) succeeds" '
    cat ../t0051-object-data/testPut.pb | ipfs object put --inputenc=protobuf > actual_putPbStdinOut
  '

  test_expect_success "'ipfs object put' from stdin (pb) output looks good" '
    HASH="QmUTSAdDi2xsNkDtLqjFgQDMEn5di3Ab9eqbrt4gaiNbUD" &&
    printf "added $HASH\n" > expected_putStdinOut &&
    test_cmp expected_putStdinOut actual_putPbStdinOut
  '

  test_expect_success "'ipfs object put broken.json' should fail" '
    test_expect_code 1 ipfs object put ../t0051-object-data/brokenPut.json 2>actual_putBrokenErr >actual_putBroken
  '

  test_expect_success "'ipfs object put broken.hjson' output looks good" '
    touch expected_putBroken &&
    printf "Error: no data or links in this node\n" > expected_putBrokenErr &&
    test_cmp expected_putBroken actual_putBroken &&
    test_cmp expected_putBrokenErr actual_putBrokenErr
  '

  test_expect_success "setup: add UTF-8 test file" '
    HASH="QmNY5sQeH9ttVCg24sizH71dNbcZTpGd7Yb3YwsKZ4jiFP" &&
    ipfs add ../t0051-object-data/UTF-8-test.txt >actual &&
    echo "added $HASH UTF-8-test.txt" >expected &&
    test_cmp expected actual
  '

  test_expect_success "'ipfs object get --enc=json' succeeds" '
    ipfs object get --enc=json $HASH >utf8_json
  '

  test_expect_success "'ipfs object put --inputenc=json' succeeds" '
    ipfs object put --inputenc=json <utf8_json >actual
  '

  test_expect_failure "'ipfs object put --inputenc=json' output looks good" '
    echo "added $HASH" >expected &&
    test_cmp expected actual
  '

  test_expect_success "'ipfs object put --pin' succeeds" '
    HASH="QmXg9Pp2ytZ14xgmQjYEiHjVjMFXzCVVEcRTWJBmLgR39V" &&
    echo "added $HASH" >expected &&
    echo "{ \"Data\": \"abc\" }" | ipfs object put --pin >actual
  '

  test_expect_success "'ipfs object put --pin' output looks good" '
    echo "added $HASH" >expected &&
    test_cmp expected actual
  '

  test_expect_success "after gc, objects still acessible" '
    ipfs repo gc > /dev/null &&
    ipfs refs -r --timeout=2s $HASH > /dev/null
  '

  test_expect_success "'ipfs object patch' should work (no unixfs-dir)" '
    EMPTY_DIR=$(ipfs object new) &&
    OUTPUT=$(ipfs object patch $EMPTY_DIR add-link foo $EMPTY_DIR) &&
    ipfs object stat $OUTPUT
  '

  test_expect_success "'ipfs object patch' should work" '
    EMPTY_DIR=$(ipfs object new unixfs-dir) &&
    OUTPUT=$(ipfs object patch $EMPTY_DIR add-link foo $EMPTY_DIR) &&
    ipfs object stat $OUTPUT
  '

Steven Allen's avatar
Steven Allen committed
226 227 228 229 230 231
  test_expect_success "'ipfs object links' gives the correct results" '
    echo "$EMPTY_DIR" 4 foo > expected &&
    ipfs object links "$OUTPUT" > actual &&
    test_cmp expected actual
  '

Łukasz Magiera's avatar
Łukasz Magiera committed
232 233 234 235 236 237 238 239 240 241
  test_expect_success "'ipfs object patch add-link' should work with paths" '
    EMPTY_DIR=$(ipfs object new unixfs-dir) &&
    N1=$(ipfs object patch $EMPTY_DIR add-link baz $EMPTY_DIR) &&
    N2=$(ipfs object patch $EMPTY_DIR add-link bar $N1) &&
    N3=$(ipfs object patch $EMPTY_DIR add-link foo /ipfs/$N2/bar) &&
    ipfs object stat /ipfs/$N3 > /dev/null &&
    ipfs object stat $N3/foo > /dev/null &&
    ipfs object stat /ipfs/$N3/foo/baz > /dev/null
  '

242 243 244 245
  test_expect_success "'ipfs object patch add-link' allow linking IPLD objects" '
    EMPTY_DIR=$(ipfs object new unixfs-dir) &&
    OBJ=$(echo "123" | ipfs dag put) &&
    N1=$(ipfs object patch $EMPTY_DIR add-link foo $OBJ) &&
246 247 248 249 250 251

    ipfs object stat /ipfs/$N1 > /dev/null &&
    ipfs resolve /ipfs/$N1/foo > actual  &&
    echo /ipfs/$OBJ > expected &&

    test_cmp expected actual
252 253
  '

254 255


Łukasz Magiera's avatar
Łukasz Magiera committed
256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294
  test_expect_success "object patch creation looks right" '
    echo "QmPc73aWK9dgFBXe86P4PvQizHo9e5Qt7n7DAMXWuigFuG" > hash_exp &&
    echo $N3 > hash_actual &&
    test_cmp hash_exp hash_actual
  '

  test_expect_success "multilayer ipfs patch works" '
    echo "hello world" > hwfile &&
    FILE=$(ipfs add -q hwfile) &&
    EMPTY=$(ipfs object new unixfs-dir) &&
    ONE=$(ipfs object patch $EMPTY add-link b $EMPTY) &&
    TWO=$(ipfs object patch $EMPTY add-link a $ONE) &&
    ipfs object patch $TWO add-link a/b/c $FILE > multi_patch
  '

  test_expect_success "output looks good" '
    ipfs cat $(cat multi_patch)/a/b/c > hwfile_out &&
    test_cmp hwfile hwfile_out
  '

  test_expect_success "ipfs object stat path succeeds" '
    ipfs object stat $(cat multi_patch)/a > obj_stat_out
  '

  test_expect_success "ipfs object stat output looks good" '
    echo NumLinks: 1 > obj_stat_exp &&
    echo BlockSize: 47 >> obj_stat_exp &&
    echo LinksSize: 45 >> obj_stat_exp &&
    echo DataSize: 2 >> obj_stat_exp &&
    echo CumulativeSize: 114 >> obj_stat_exp &&

    test_cmp obj_stat_exp obj_stat_out
  '

  test_expect_success "should have created dir within a dir" '
    ipfs ls $OUTPUT > patched_output
  '

  test_expect_success "output looks good" '
295
    echo "QmUNLLsPACCz1vLxQVkXqqLX5R1X345qqfHbsf67hvA3Nn  foo/" > patched_exp &&
Łukasz Magiera's avatar
Łukasz Magiera committed
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352
    test_cmp patched_exp patched_output
  '

  test_expect_success "can remove the directory" '
    ipfs object patch $OUTPUT rm-link foo > rmlink_output
  '

  test_expect_success "output should be empty" '
    echo QmUNLLsPACCz1vLxQVkXqqLX5R1X345qqfHbsf67hvA3Nn > rmlink_exp &&
    test_cmp rmlink_exp rmlink_output
  '

  test_expect_success "multilayer rm-link should work" '
    ipfs object patch $(cat multi_patch) rm-link a/b/c > multi_link_rm_out
  '

  test_expect_success "output looks good" '
    echo "QmZD3r9cZjzU8huNY2JS9TC6n8daDfT8TmE8zBSqG31Wvq" > multi_link_rm_exp &&
    test_cmp multi_link_rm_exp multi_link_rm_out
  '

  test_patch_create_path $EMPTY a/b/c $FILE

  test_patch_create_path $EMPTY a $FILE

  test_patch_create_path $EMPTY a/b/b/b/b $FILE

  test_expect_success "can create blank object" '
    BLANK=$(ipfs object new)
  '

  test_patch_create_path $BLANK a $FILE

  test_expect_success "create bad path fails" '
    test_must_fail ipfs object patch $EMPTY add-link --create / $FILE
  '

  test_expect_success "patch set-data works" '
    EMPTY=$(ipfs object new) &&
    HASH=$(printf "foo" | ipfs object patch $EMPTY set-data)
  '

  test_expect_success "output looks good" '
    echo "{\"Links\":[],\"Data\":\"foo\"}" > exp_data_set &&
    ipfs object get $HASH > actual_data_set &&
    test_cmp exp_data_set actual_data_set
  '

  test_expect_success "patch append-data works" '
    HASH=$(printf "bar" | ipfs object patch $HASH append-data)
  '

  test_expect_success "output looks good" '
    echo "{\"Links\":[],\"Data\":\"foobar\"}" > exp_data_append &&
    ipfs object get $HASH > actual_data_append &&
    test_cmp exp_data_append actual_data_append
  '
353 354
}

355 356
test_object_content_type() {

Łukasz Magiera's avatar
Łukasz Magiera committed
357 358 359
  test_expect_success "'ipfs object get --encoding=protobuf' returns the correct content type" '
    curl -sI "http://$API_ADDR/api/v0/object/get?arg=$HASH&encoding=protobuf" | grep -q "^Content-Type: application/protobuf"
  '
360

Łukasz Magiera's avatar
Łukasz Magiera committed
361 362 363
  test_expect_success "'ipfs object get --encoding=json' returns the correct content type" '
    curl -sI "http://$API_ADDR/api/v0/object/get?arg=$HASH&encoding=json" | grep -q "^Content-Type: application/json"
  '
364

Łukasz Magiera's avatar
Łukasz Magiera committed
365 366 367
  test_expect_success "'ipfs object get --encoding=text' returns the correct content type" '
    curl -sI "http://$API_ADDR/api/v0/object/get?arg=$HASH&encoding=text" | grep -q "^Content-Type: text/plain"
  '
368

Łukasz Magiera's avatar
Łukasz Magiera committed
369 370 371
  test_expect_success "'ipfs object get --encoding=xml' returns the correct content type" '
    curl -sI "http://$API_ADDR/api/v0/object/get?arg=$HASH&encoding=xml" | grep -q "^Content-Type: application/xml"
  '
372 373
}

374 375 376 377 378 379
# should work offline
test_object_cmd

# should work online
test_launch_ipfs_daemon
test_object_cmd
380
test_object_content_type
381
test_kill_ipfs_daemon
382 383

test_done