diff options
Diffstat (limited to 'simplepie/test/absolutize/RFC3986.5.4/abnormal')
19 files changed, 304 insertions, 0 deletions
diff --git a/simplepie/test/absolutize/RFC3986.5.4/abnormal/1.php b/simplepie/test/absolutize/RFC3986.5.4/abnormal/1.php new file mode 100644 index 000000000..f55e62d8b --- /dev/null +++ b/simplepie/test/absolutize/RFC3986.5.4/abnormal/1.php @@ -0,0 +1,16 @@ +<?php + +class SimplePie_Absolutize_Test_RFC3986_Abnormal_1 extends SimplePie_Absolutize_Test_RFC3986 +{ + function data() + { + $this->data['relative'] = '../../../g'; + } + + function expected() + { + $this->expected = 'http://a/g'; + } +} + +?>
\ No newline at end of file diff --git a/simplepie/test/absolutize/RFC3986.5.4/abnormal/10.php b/simplepie/test/absolutize/RFC3986.5.4/abnormal/10.php new file mode 100644 index 000000000..668cda63c --- /dev/null +++ b/simplepie/test/absolutize/RFC3986.5.4/abnormal/10.php @@ -0,0 +1,16 @@ +<?php + +class SimplePie_Absolutize_Test_RFC3986_Abnormal_10 extends SimplePie_Absolutize_Test_RFC3986 +{ + function data() + { + $this->data['relative'] = './g/.'; + } + + function expected() + { + $this->expected = 'http://a/b/c/g/'; + } +} + +?>
\ No newline at end of file diff --git a/simplepie/test/absolutize/RFC3986.5.4/abnormal/11.php b/simplepie/test/absolutize/RFC3986.5.4/abnormal/11.php new file mode 100644 index 000000000..eda10a60b --- /dev/null +++ b/simplepie/test/absolutize/RFC3986.5.4/abnormal/11.php @@ -0,0 +1,16 @@ +<?php + +class SimplePie_Absolutize_Test_RFC3986_Abnormal_11 extends SimplePie_Absolutize_Test_RFC3986 +{ + function data() + { + $this->data['relative'] = 'g/./h'; + } + + function expected() + { + $this->expected = 'http://a/b/c/g/h'; + } +} + +?>
\ No newline at end of file diff --git a/simplepie/test/absolutize/RFC3986.5.4/abnormal/12.php b/simplepie/test/absolutize/RFC3986.5.4/abnormal/12.php new file mode 100644 index 000000000..b66d71f60 --- /dev/null +++ b/simplepie/test/absolutize/RFC3986.5.4/abnormal/12.php @@ -0,0 +1,16 @@ +<?php + +class SimplePie_Absolutize_Test_RFC3986_Abnormal_12 extends SimplePie_Absolutize_Test_RFC3986 +{ + function data() + { + $this->data['relative'] = 'g/../h'; + } + + function expected() + { + $this->expected = 'http://a/b/c/h'; + } +} + +?>
\ No newline at end of file diff --git a/simplepie/test/absolutize/RFC3986.5.4/abnormal/13.php b/simplepie/test/absolutize/RFC3986.5.4/abnormal/13.php new file mode 100644 index 000000000..06b5e326c --- /dev/null +++ b/simplepie/test/absolutize/RFC3986.5.4/abnormal/13.php @@ -0,0 +1,16 @@ +<?php + +class SimplePie_Absolutize_Test_RFC3986_Abnormal_13 extends SimplePie_Absolutize_Test_RFC3986 +{ + function data() + { + $this->data['relative'] = 'g;x=1/./y'; + } + + function expected() + { + $this->expected = 'http://a/b/c/g;x=1/y'; + } +} + +?>
\ No newline at end of file diff --git a/simplepie/test/absolutize/RFC3986.5.4/abnormal/14.php b/simplepie/test/absolutize/RFC3986.5.4/abnormal/14.php new file mode 100644 index 000000000..4a40af5ad --- /dev/null +++ b/simplepie/test/absolutize/RFC3986.5.4/abnormal/14.php @@ -0,0 +1,16 @@ +<?php + +class SimplePie_Absolutize_Test_RFC3986_Abnormal_14 extends SimplePie_Absolutize_Test_RFC3986 +{ + function data() + { + $this->data['relative'] = 'g;x=1/../y'; + } + + function expected() + { + $this->expected = 'http://a/b/c/y'; + } +} + +?>
\ No newline at end of file diff --git a/simplepie/test/absolutize/RFC3986.5.4/abnormal/15.php b/simplepie/test/absolutize/RFC3986.5.4/abnormal/15.php new file mode 100644 index 000000000..bef790e70 --- /dev/null +++ b/simplepie/test/absolutize/RFC3986.5.4/abnormal/15.php @@ -0,0 +1,16 @@ +<?php + +class SimplePie_Absolutize_Test_RFC3986_Abnormal_15 extends SimplePie_Absolutize_Test_RFC3986 +{ + function data() + { + $this->data['relative'] = 'g?y/./x'; + } + + function expected() + { + $this->expected = 'http://a/b/c/g?y/./x'; + } +} + +?>
\ No newline at end of file diff --git a/simplepie/test/absolutize/RFC3986.5.4/abnormal/16.php b/simplepie/test/absolutize/RFC3986.5.4/abnormal/16.php new file mode 100644 index 000000000..932cda4b5 --- /dev/null +++ b/simplepie/test/absolutize/RFC3986.5.4/abnormal/16.php @@ -0,0 +1,16 @@ +<?php + +class SimplePie_Absolutize_Test_RFC3986_Abnormal_16 extends SimplePie_Absolutize_Test_RFC3986 +{ + function data() + { + $this->data['relative'] = 'g?y/../x'; + } + + function expected() + { + $this->expected = 'http://a/b/c/g?y/../x'; + } +} + +?>
\ No newline at end of file diff --git a/simplepie/test/absolutize/RFC3986.5.4/abnormal/17.php b/simplepie/test/absolutize/RFC3986.5.4/abnormal/17.php new file mode 100644 index 000000000..8d626b68f --- /dev/null +++ b/simplepie/test/absolutize/RFC3986.5.4/abnormal/17.php @@ -0,0 +1,16 @@ +<?php + +class SimplePie_Absolutize_Test_RFC3986_Abnormal_17 extends SimplePie_Absolutize_Test_RFC3986 +{ + function data() + { + $this->data['relative'] = 'g#s/./x'; + } + + function expected() + { + $this->expected = 'http://a/b/c/g#s/./x'; + } +} + +?>
\ No newline at end of file diff --git a/simplepie/test/absolutize/RFC3986.5.4/abnormal/18.php b/simplepie/test/absolutize/RFC3986.5.4/abnormal/18.php new file mode 100644 index 000000000..7a53018cf --- /dev/null +++ b/simplepie/test/absolutize/RFC3986.5.4/abnormal/18.php @@ -0,0 +1,16 @@ +<?php + +class SimplePie_Absolutize_Test_RFC3986_Abnormal_18 extends SimplePie_Absolutize_Test_RFC3986 +{ + function data() + { + $this->data['relative'] = 'g#s/../x'; + } + + function expected() + { + $this->expected = 'http://a/b/c/g#s/../x'; + } +} + +?>
\ No newline at end of file diff --git a/simplepie/test/absolutize/RFC3986.5.4/abnormal/19.php b/simplepie/test/absolutize/RFC3986.5.4/abnormal/19.php new file mode 100644 index 000000000..289c1abc2 --- /dev/null +++ b/simplepie/test/absolutize/RFC3986.5.4/abnormal/19.php @@ -0,0 +1,16 @@ +<?php + +class SimplePie_Absolutize_Test_RFC3986_Abnormal_19 extends SimplePie_Absolutize_Test_RFC3986 +{ + function data() + { + $this->data['relative'] = 'http:g'; + } + + function expected() + { + $this->expected = 'http:g'; + } +} + +?>
\ No newline at end of file diff --git a/simplepie/test/absolutize/RFC3986.5.4/abnormal/2.php b/simplepie/test/absolutize/RFC3986.5.4/abnormal/2.php new file mode 100644 index 000000000..9a0534554 --- /dev/null +++ b/simplepie/test/absolutize/RFC3986.5.4/abnormal/2.php @@ -0,0 +1,16 @@ +<?php + +class SimplePie_Absolutize_Test_RFC3986_Abnormal_2 extends SimplePie_Absolutize_Test_RFC3986 +{ + function data() + { + $this->data['relative'] = '../../../../g'; + } + + function expected() + { + $this->expected = 'http://a/g'; + } +} + +?>
\ No newline at end of file diff --git a/simplepie/test/absolutize/RFC3986.5.4/abnormal/3.php b/simplepie/test/absolutize/RFC3986.5.4/abnormal/3.php new file mode 100644 index 000000000..f96f5468f --- /dev/null +++ b/simplepie/test/absolutize/RFC3986.5.4/abnormal/3.php @@ -0,0 +1,16 @@ +<?php + +class SimplePie_Absolutize_Test_RFC3986_Abnormal_3 extends SimplePie_Absolutize_Test_RFC3986 +{ + function data() + { + $this->data['relative'] = '/./g'; + } + + function expected() + { + $this->expected = 'http://a/g'; + } +} + +?>
\ No newline at end of file diff --git a/simplepie/test/absolutize/RFC3986.5.4/abnormal/4.php b/simplepie/test/absolutize/RFC3986.5.4/abnormal/4.php new file mode 100644 index 000000000..64e359fe6 --- /dev/null +++ b/simplepie/test/absolutize/RFC3986.5.4/abnormal/4.php @@ -0,0 +1,16 @@ +<?php + +class SimplePie_Absolutize_Test_RFC3986_Abnormal_4 extends SimplePie_Absolutize_Test_RFC3986 +{ + function data() + { + $this->data['relative'] = '/../g'; + } + + function expected() + { + $this->expected = 'http://a/g'; + } +} + +?>
\ No newline at end of file diff --git a/simplepie/test/absolutize/RFC3986.5.4/abnormal/5.php b/simplepie/test/absolutize/RFC3986.5.4/abnormal/5.php new file mode 100644 index 000000000..dfd8e42be --- /dev/null +++ b/simplepie/test/absolutize/RFC3986.5.4/abnormal/5.php @@ -0,0 +1,16 @@ +<?php + +class SimplePie_Absolutize_Test_RFC3986_Abnormal_5 extends SimplePie_Absolutize_Test_RFC3986 +{ + function data() + { + $this->data['relative'] = 'g.'; + } + + function expected() + { + $this->expected = 'http://a/b/c/g.'; + } +} + +?>
\ No newline at end of file diff --git a/simplepie/test/absolutize/RFC3986.5.4/abnormal/6.php b/simplepie/test/absolutize/RFC3986.5.4/abnormal/6.php new file mode 100644 index 000000000..3125b0044 --- /dev/null +++ b/simplepie/test/absolutize/RFC3986.5.4/abnormal/6.php @@ -0,0 +1,16 @@ +<?php + +class SimplePie_Absolutize_Test_RFC3986_Abnormal_6 extends SimplePie_Absolutize_Test_RFC3986 +{ + function data() + { + $this->data['relative'] = '.g'; + } + + function expected() + { + $this->expected = 'http://a/b/c/.g'; + } +} + +?>
\ No newline at end of file diff --git a/simplepie/test/absolutize/RFC3986.5.4/abnormal/7.php b/simplepie/test/absolutize/RFC3986.5.4/abnormal/7.php new file mode 100644 index 000000000..82f97b0ce --- /dev/null +++ b/simplepie/test/absolutize/RFC3986.5.4/abnormal/7.php @@ -0,0 +1,16 @@ +<?php + +class SimplePie_Absolutize_Test_RFC3986_Abnormal_7 extends SimplePie_Absolutize_Test_RFC3986 +{ + function data() + { + $this->data['relative'] = 'g..'; + } + + function expected() + { + $this->expected = 'http://a/b/c/g..'; + } +} + +?>
\ No newline at end of file diff --git a/simplepie/test/absolutize/RFC3986.5.4/abnormal/8.php b/simplepie/test/absolutize/RFC3986.5.4/abnormal/8.php new file mode 100644 index 000000000..836ede076 --- /dev/null +++ b/simplepie/test/absolutize/RFC3986.5.4/abnormal/8.php @@ -0,0 +1,16 @@ +<?php + +class SimplePie_Absolutize_Test_RFC3986_Abnormal_8 extends SimplePie_Absolutize_Test_RFC3986 +{ + function data() + { + $this->data['relative'] = '..g'; + } + + function expected() + { + $this->expected = 'http://a/b/c/..g'; + } +} + +?>
\ No newline at end of file diff --git a/simplepie/test/absolutize/RFC3986.5.4/abnormal/9.php b/simplepie/test/absolutize/RFC3986.5.4/abnormal/9.php new file mode 100644 index 000000000..4917d4ceb --- /dev/null +++ b/simplepie/test/absolutize/RFC3986.5.4/abnormal/9.php @@ -0,0 +1,16 @@ +<?php + +class SimplePie_Absolutize_Test_RFC3986_Abnormal_9 extends SimplePie_Absolutize_Test_RFC3986 +{ + function data() + { + $this->data['relative'] = './../g'; + } + + function expected() + { + $this->expected = 'http://a/b/g'; + } +} + +?>
\ No newline at end of file |