123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626 |
- --TEST--
- Test tempnam() function: usage variations - permissions(0351 to 0777) of dir
- --SKIPIF--
- <?php
- if (substr(PHP_OS, 0, 3) == 'WIN') {
- die('skip Not valid for Windows');
- }
- require __DIR__ . '/../skipif_root.inc';
- ?>
- --FILE--
- <?php
- /* Trying to create the file in a dir with permissions from 0351 to 0777,
- Allowable permissions: files are expected to be created in the input dir
- Non-allowable permissions: files are expected to be created in '/tmp' dir
- */
- echo "*** Testing tempnam() with dir of permissions from 0351 to 0777 ***\n";
- $file_path = __DIR__;
- $dir_name = $file_path."/tempnam_variation4-1";
- $prefix = "tempnamVar4.";
- mkdir($dir_name);
- for($mode = 0351; $mode <= 0777; $mode++) {
- chmod($dir_name, $mode);
- $file_name = tempnam($dir_name, $prefix);
- if(file_exists($file_name) ) {
- if (dirname($file_name) != $dir_name) {
- /* Either there's a notice or error */
- printf("%o\n", $mode);
- if (realpath(dirname($file_name)) != realpath(sys_get_temp_dir())) {
- echo " created in unexpected dir\n";
- }
- }
- unlink($file_name);
- }
- else {
- print("FAILED: File is not created\n");
- }
- }
- rmdir($dir_name);
- echo "*** Done ***\n";
- ?>
- --EXPECTF--
- *** Testing tempnam() with dir of permissions from 0351 to 0777 ***
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 400
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 401
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 402
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 403
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 404
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 405
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 406
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 407
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 410
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 411
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 412
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 413
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 414
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 415
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 416
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 417
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 420
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 421
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 422
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 423
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 424
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 425
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 426
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 427
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 430
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 431
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 432
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 433
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 434
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 435
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 436
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 437
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 440
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 441
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 442
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 443
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 444
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 445
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 446
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 447
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 450
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 451
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 452
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 453
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 454
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 455
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 456
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 457
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 460
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 461
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 462
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 463
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 464
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 465
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 466
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 467
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 470
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 471
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 472
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 473
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 474
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 475
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 476
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 477
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 500
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 501
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 502
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 503
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 504
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 505
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 506
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 507
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 510
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 511
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 512
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 513
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 514
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 515
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 516
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 517
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 520
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 521
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 522
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 523
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 524
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 525
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 526
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 527
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 530
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 531
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 532
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 533
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 534
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 535
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 536
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 537
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 540
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 541
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 542
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 543
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 544
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 545
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 546
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 547
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 550
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 551
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 552
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 553
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 554
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 555
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 556
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 557
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 560
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 561
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 562
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 563
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 564
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 565
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 566
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 567
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 570
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 571
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 572
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 573
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 574
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 575
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 576
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 577
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 600
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 601
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 602
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 603
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 604
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 605
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 606
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 607
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 610
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 611
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 612
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 613
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 614
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 615
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 616
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 617
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 620
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 621
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 622
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 623
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 624
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 625
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 626
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 627
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 630
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 631
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 632
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 633
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 634
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 635
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 636
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 637
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 640
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 641
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 642
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 643
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 644
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 645
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 646
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 647
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 650
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 651
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 652
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 653
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 654
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 655
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 656
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 657
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 660
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 661
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 662
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 663
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 664
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 665
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 666
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 667
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 670
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 671
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 672
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 673
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 674
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 675
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 676
- Notice: tempnam(): file created in the system's temporary directory in %s on line %d
- 677
- *** Done ***
|