File: tempnam_variation4-1.phpt

package info (click to toggle)
php8.4 8.4.11-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 208,108 kB
  • sloc: ansic: 1,060,628; php: 35,345; sh: 11,866; cpp: 7,201; pascal: 4,913; javascript: 3,091; asm: 2,810; yacc: 2,411; makefile: 689; xml: 446; python: 301; awk: 148
file content (626 lines) | stat: -rw-r--r-- 18,579 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
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
295
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
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
--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 ***