005whitespace.t 1.64 KB
Newer Older
1 2 3
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
4
#
5 6
# This Source Code Form is "Incompatible With Secondary Licenses", as
# defined by the Mozilla Public License, v. 2.0.
7 8

#################
9
#Bugzilla Test 5#
10 11
#####no_tabs#####

12
use 5.10.1;
13
use strict;
14
use warnings;
15

16 17 18 19 20
use lib 't';

use Support::Files;
use Support::Templates;

21
use File::Spec;
22 23 24 25 26
use Test::More tests => (
      scalar(@Support::Files::testitems)
    + scalar(@Support::Files::test_files)
    + $Support::Templates::num_actual_files)
  * 3;
27

28
my @testitems = (@Support::Files::testitems, @Support::Files::test_files);
29
for my $path (@Support::Templates::include_paths) {
30 31 32 33 34
  push(
    @testitems,
    map(File::Spec->catfile($path, $_),
      Support::Templates::find_actual_files($path))
  );
35
}
36

37 38
my %results;

39
foreach my $file (@testitems) {
40 41 42 43 44 45 46 47 48
  open(FILE, "$file");
  my @contents = <FILE>;
  if (grep /\t/, @contents) {
    ok(0, "$file contains tabs --WARNING");
  }
  else {
    ok(1, "$file has no tabs");
  }
  close(FILE);
49 50
}

51
foreach my $file (@testitems) {
52 53 54 55 56 57 58 59 60
  open(FILE, "$file");
  my @contents = <FILE>;
  if (grep /\r/, @contents) {
    ok(0, "$file contains non-OS-conformant line endings --WARNING");
  }
  else {
    ok(1, "All line endings of $file are OS conformant");
  }
  close(FILE);
61 62
}

63
foreach my $file (@testitems) {
64 65 66 67 68 69 70 71 72
  open(FILE, "$file");
  my $first_line = <FILE>;
  if ($first_line =~ /\xef\xbb\xbf/) {
    ok(0, "$file contains Byte Order Mark --WARNING");
  }
  else {
    ok(1, "$file is free of a Byte Order Mark");
  }
  close(FILE);
73 74
}

75
exit 0;