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 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118
|
2010-03-17 Gonzalo Paniagua Javier <gonzalo@novell.com>
* StreamReaderTest.cs: test for bug 589236. The detected encoding is
different from the one provided in the ctor.
2010-02-22 Carlos Alberto Cortez <calberto.cortez@gmail.com>
* MemoryStreamTest.cs: Activate ZeroingOnExpandTest as we have fixed
this issue.
2009-10-15 Sebastien Pouliot <sebastien@ximian.com>
* UnmanagedMemoryStreamTest.cs: Add more test cases to cover all
validations
[Backport r144226]
2009-06-25 Robert Jordan <robertj@gmx.net>
* BinaryReaderTest.cs, BinaryWriterTest.cs, BufferedStreamTest.cs,
PathTest.cs, PathTest.cs, StringWriterTest.cs, TextWriterTest.cs:
Upgrade to new NUnit style.
2009-05-06 Raja R Harinath <harinath@hurrynot.org>
* FileInfoTest.cs: Wrap Replace() tests in #if NET_2_0.
2009-04-27 Sebastien Pouliot <sebastien@ximian.com>
* StreamReaderTest.cs: Fix build for NET_1_1
2009-04-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
* StreamReaderTest.cs: new test. Using Peek() when we did a short read
should block if needed.
2009-02-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
* StringReaderTest.cs: new test for ReadLine.
2008-12-10 Atsushi Enomoto <atsushi@ximian.com>
* BinaryReaderTest.cs : fix tests that are also failing under .NET
(Exposed by nunit24).
2008-11-09 William Holmes <billholmes54@gmail.com>
* TextReaderTest.cs: Added a test for the Null field of
the TextReader.
Code is contributed under MIT/X11 license.
2008-10-29 Gonzalo Paniagua Javier <gonzalo@novell.com>
* PathTest.cs: add test for bug #439751.
2008-10-12 Zoltan Varga <vargaz@gmail.com>
* BinaryReaderTest.cs: Add a test for #434581.
2008-08-16 Gert Driesen <drieseng@users.sourceforge.net>
* StreamWriterTest.cs: Removed Constructor2_Path_Whitespace test, as
it only applies to Windows (and is duplicate for illegal chars test).
Only check paramname for buffersize exception on 2.0 profile.
2008-08-15 Gert Driesen <drieseng@users.sourceforge.net>
* StreamWriterTest.cs: Added more .ctor tests. Enabled AutoFlush
test.
2008-08-15 Gert Driesen <drieseng@users.sourceforge.net>
* StreamWriterTest.cs: Moved ctor argument checks to separate methods.
Added and improved ctor tests. Added test for Close. Improved
(Auto)Flush tests. Use Assert class instead of Assertion.
2008-06-21 Gert Driesen <drieseng@users.sourceforge.net>
* PathCas.cs: Updated method names to reflect changes in PathTest.
* PathTest.cs: Renamed tests. Use String.Empty instead of "". Added
argument check tests, and moved tests to separate methods. Avoid using
ExpectedException.
2008-05-29 Robert Jordan <robertj@gmx.net>
* PathTest.cs (TestGetFullPathUnix, TestGetFullPathWindows):
Factored out from the disabled TestGetFullPath test while fixing
the issues mentioned by the ERROR comment and bug #394681.
2008-05-08 Dick Porter <dick@ximian.com>
* DirectoryInfoTest.cs: Added a test for bug 385765.
2008-04-30 Gert Driesen <drieseng@users.sourceforge.net>
* DirectoryTest.cs: Do not use ExpectedException to avoid false
positives. Use String.Empty instead of "".
2008-04-22 Dick Porter <dick@ximian.com>
* FileTest.cs: Disable the test for bug 323389, as I've reverted
the fix.
2008-04-17 Dick Porter <dick@ximian.com>
* FileTest.cs: Test for bug 323389.
2008-04-17 Dick Porter <dick@ximian.com>
* FileTest.cs: Test for bug 378229.
2008-04-17 Gert Driesen <drieseng@users.sourceforge.net>
* File.cs: Added/improved tests for Create and Move.
* DirectoryInfoTest.cs: No longer derive from deprecated Assertion
class. Improved tests for ctor, Create, Name, Parent, ...
* FileInfoTest.cs: No longer derive from deprecated Assertion class.
Improved/added tests,
* PathTest.cs: Added tests for IsPathRooted and GetFullPath.
* FileSystemInfoTest.cs: Fixed test. Now passes on both Mono and MS.
2008-04-16 Gert Driesen <drieseng@users.sourceforge.net>
* FileTest.cs: Renamed and improved existing tests. Avoid use of
ExpectedException.
* FileSystemInfoTest.cs: No longer derive from deprecated Assertion
class. Added (de)serialization tests.
2008-04-04 Dick Porter <dick@ximian.com>
* FileTest.cs: Test moving a file when the access mode disallows
it. Test from Eric Albright <albright@wesay.org>, see bug 377049.
2008-04-03 Dick Porter <dick@ximian.com>
* DirectoryTest.cs: Enable tests now that bug 346123 is fixed.
2008-03-28 Sebastien Pouliot <sebastien@ximian.com>
* DirectoryTest.cs: Add test case when deleting a directory that does
not exists but where a file of the same name exists.
2008-01-06 Zoltan Varga <vargaz@gmail.com>
* FileTest.cs: Rename a helper method so it does not begin with Test.
2007-12-28 Zoltan Varga <vargaz@gmail.com>
* MemoryStreamTest.cs: Add new test.
2007-12-05 Gert Driesen <drieseng@users.sourceforge.net>
* DirectoryTest.cs: Added (NotWorking) tests for bug #346123.
2007-11-17 Jb Evain <jbevain@novell.com>
* PathTest.cs: Add test for #341034, GetRandomFileName should
return only file names in [a..z0..9].
2007-11-05 Sebastien Pouliot <sebastien@ximian.com>
* MemoryStreamTest.cs: Add test case for #322672 (which seems already
fixed in SVN).
2007-11-02 Atsushi Enomoto <atsushi@ximian.com>
* PathTest.cs: Fixed wrong assumption on GetDirectoryName("/")
result on Unix (on top level it returns null).
2007-11-02 Robert Jordan <robertj@gmx.net>
* PathTest.cs (TestGetDirectoryName): Fix syntax errors.
2007-09-27 Gert Driesen <drieseng@users.sourceforge.net>
* DirectoryTest.cs: Added RunningOnUnix property to use for enabling
or disabling tests on a specific platform. Enabled and improved test
for bug #325107.
2007-09-21 Gert Driesen <drieseng@users.sourceforge.net>
* MemoryStreamTest.cs: Added test for bug #327053.
2007-09-08 Gert Driesen <drieseng@users.sourceforge.net>
* DirectoryTest.cs: Added test for bug #82440.
2007-08-21 Gert Driesen <drieseng@users.sourceforge.net>
* FileTest.cs: Added test for File.GetAttributes (and indirectly also
for SetAttributes). Removed use of deprecated Assertion class.
2007-08-20 William Holmes <billholmes54@gmail.com>
*FileTest.cs: Added a test for IO.File.Replace.
Code is contributed under MIT/X11 license.
2007-08-01 Dick Porter <dick@ximian.com>
* DirectoryTest.cs: Test for bug 82212 is now working.
2007-07-28 Gert Driesen <drieseng@users.sourceforge.net>
* DirectoryTest.cs: Added test for bug #82212.
2007-07-08 Gert Driesen <drieseng@users.sourceforge.net>
* DirectoryCas.cs: Changed Move to MoveDirectory to match the
method in DirectoryTest. Fixed line endings.
* DirectoryTest.cs: Added test for bug #81912. Added tests for Move
argument checks.
2007-06-24 Gert Driesen <drieseng@users.sourceforge.net>
* DirectoryTest.cs: Restore original CurrentCulture on teardown.
* FileSystemInfoTest.cs: Restore original CurrentCulture on teardown.
Removed stray tabs. Code formatting.
* FileTest.cs: Restore original CurrentCulture on teardown. Removed
stray tabs. Changes spaces to tabs.
2007-06-22 Gert Driesen <drieseng@users.sourceforge.net>
* FileStreamTest.cs: Added test for bug #79250.
2007-05-25 Gert Driesen <drieseng@users.sourceforge.net>
* UnmanagedMemoryStreamTest.cs: Added tests for CanRead, CanSeek,
CanWrite, Seek, Write. Improved existing tests for SetLength,
Position. Enabled tests that were previously failing.
2007-05-24 Gert Driesen <drieseng@users.sourceforge.net>
* UnmanagedMemoryStreamTest.cs: Fixed several tests and added several
more. Tests were previously ignored by NUnit because the SetUp method
was private.
2007-02-19 Eyal Alaluf <eyala@mainsoft.com>
* FileStreamTest.cs: Mark tests that use TARGET_JVM not supported features.
2007-02-19 Boris Kirzner <borisk@mainsoft.com>
* DirectoryTest.cs, PathTest.cs: added test for
order of InvalidPathChars on windows.
2007-01-31 Gert Driesen <drieseng@users.sourceforge.net>
* FileStreamTest.cs: Added and improved tests to verify whether the
reported exceptions match that of MS.>
2007-01-31 Gert Driesen <drieseng@users.sourceforge.net>
* StreamReaderTest.cs: Use Assert class instead of deprecation
Assertion. Clean-up some tests.
2007-01-30 Boris Kirzner <borisk@mainsoft.com>
* FileNotFoundExceptionTest.cs: fix tests for TARGET_JVM.
2007-01-29 Boris Kirzner <borisk@mainsoft.com>
* BinaryReaderTest.cs, BinaryWriterTest.cs, PathTest.cs: test fixes
for TARGET_JVM.
2007-01-25 Gert Driesen <drieseng@users.sourceforge.net>
* StreamReaderTest.cs: Added test for bug #75526.
2007-01-11 Gert Driesen <drieseng@users.sourceforge.net>
* DirectoryTest.cs: Fixed compiler warning by improving test.
2006-01-25 Bors Kirzner <borisk@mainsoft.com>
* DirectoryInfoTest.cs, DirectoryTest.cs, FileInfoTest.cs, FileSystemInfoTest.cs
FileTest.cs: add ifdefs for TARGET_JVM.
2006-12-21 Gert Driesen <drieseng@users.sourceforge.net>
* MemoryStreamTest.cs: Added (de)serialization tests for bug #80205.
2006-11-28 Gert Driesen <drieseng@users.sourceforge.net>
* DirectoryTest.cs: Use Assert.Ignore instead of silently ignoring
test.
2006-11-07 Gert Driesen <drieseng@users.sourceforge.net>
* DirectoryTest.cs: Use Assert class intead of deriving from
deprecated Assertion class. Only ignore CreationTime test on unix.
Removed extra tabs.
2006-11-07 Dick Porter <dick@ximian.com>
* DirectoryTest.cs: CreateDirectoryAlreadyExistsAsFile() should
expect an IOException in the 2.0 profile
2006-10-30 Joel Reed <joel.reed@ddiworld.com>
* DirectoryInfoTest.cs: Updated tests to support the DirectoryInfo
SearchOption.AllDirectories
2006-09-24 Raja R Harinath <harinath@gmail.com>
* FileInfoTest.cs (IsReadOnly): Fix compilation. Mark as NotWorking.
2006-09-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* FileInfoTest.cs: improved IsReadOnly test case. Patch by Joel Reed.
2006-09-21 Gert Driesen <drieseng@users.sourceforge.net>
* FileNotFoundExceptionTest.cs: Added ctor tests.
2006-07-06 Dick Porter <dick@ximian.com>
* DirectoryTest.cs: Test creating a directory when a file or
directory already exists with the requested name.
2006-05-14 Zoltan Varga <vargaz@gmail.com>
* DirectoryTest.cs: Ignore one of the tests which causes nunit to abort on
IA64 due to an exception handling bug.
2006-05-08 Atsushi Enomoto <atsushi@ximian.com>
* DirectoryTest.cs : don't expect "chmod" on Windows.
2006-05-01 Daniel Drake <dsd@gentoo.org>
* DirectoryTest.cs: add test for bug #78239, based on suggestion from
Robert Jordan.
2006-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* DirectoryTest.cs: added test for bug 78209.
2006-04-28 Robert Jordan <robertj@gmx.net>
* PathTest.cs: Added tests for bug #78147.
2006-03-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* FileStreamTest.cs: new test from bug #77863.
2006-02-27 Gert Driesen <drieseng@users.sourceforge.net>
* FileTest.cs: In 2.0 profile, no longer expect IOException when path to
non-existing directory or file is specified in Get***Time(Utc) methods
(bug #77641). Renamed tests and removed trailing tabs. Removed
duplicate test. Fixed GetLastWriteTime(Utc) tests that used
GetLastAccessTime(Utc) instead of GetLastWriteTime(Utc).
* DirectoryTest.cs: No longer expect IOException when path to
non-existing directory or file is specified in Get***Time(Utc) methods
(bug #77641).
2006-02-26 Gert Driesen <drieseng@users.sourceforge.net>
* FileStreamTest.cs: Fixed tests for invalid share value to pass on
MS.NET 2.0, and all Mono profiles. Added test that verifies the
correct behavior of all possible FileMode and FileAccess combinations.
Fixed compiler warning.
2006-02-25 Gert Driesen <drieseng@users.sourceforge.net>
* FileStreamTest.cs: Spaces to tabs, (re)numbered tests.
2006-01-18 Atsushi Enomoto <atsushi@ximian.com>
* DirectoryInfoTest.cs : don't expect "/" as a top directory on
Windows.
2006-01-13 Ben Maurer <bmaurer@andrew.cmu.edu>
* TextWriterTest.cs: Make sure TextWriter calls the char[],int,int
overload when calling the char[].
2006-01-12 Ben Maurer <bmaurer@andrew.cmu.edu>
* FileTest.cs: Tests tests for read/writealltext.
2006-01-02 Sebastien Pouliot <sebastien@ximian.com>
* StreamReaderTest.cs: Added test case when reading a new line (see
bug #77108 for details).
* StringReaderTest.cs: Added test case when reading a new line (see
bug #77108 for details).
2005-12-23 Sebastien Pouliot <sebastien@ximian.com>
* DirectoryInfoTest.cs: Added test case for #77090 where we skipped
/ as a parent between /home and null.
2005-12-21 Sebastien Pouliot <sebastien@ximian.com>
* PathTest.cs: Added new test case for #77058 where a Windows drive
wasn't considered during path canonalization.
2005-12-20 Sebastien Pouliot <sebastien@ximian.com>
* PathTest.cs: Added new test case for #77007 where a Windows drive is
specified with a partial path.
2005-12-15 Sebastien Pouliot <sebastien@ximian.com>
* DirectoryInfoTest.cs: Added test cases for #76191 and #76903.
* PathTest.cs: Added test cases for #76191, the possible modification
of InvalidPathChars and the new 2.0 methods.
2005-12-14 Sebastien Pouliot <sebastien@ximian.com>
* FileLoadExceptionCas.cs: MS fixed this in 2.0 final (#71861).
* FileNotFoundExceptionCas.cs: MS fixed this in 2.0 final (#71861).
2005-10-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* StreamReaderTest.cs: more tests for ReadLine().
2005-10-01 Ben Maurer <bmaurer@ximian.com>
* BinaryReaderTest.cs: new test for long, non-ascii strings
2005-09-08 Sebastien Pouliot <sebastien@ximian.com>
* MemoryStreamTest.cs: Add more tests for publicly visible (or not)
contents. Started converting tests to NUnit 2.2 API.
2005-07-04 Sebastien Pouliot <sebastien@ximian.com>
* DirectoryInfoTest.cs: Added tests for getting parent of root
directories (using directory separators).
2005-07-02 Sebastien Pouliot <sebastien@ximian.com>
* DirectoryInfoTest.cs: Added tests for FullName (bug #75443).
2005-06-16 Gert Driesen <drieseng@users.sourceforge.net>
* DirectoryInfoTest.cs: Added tests for bug #75285.
2005-06-10 Ben Maurer <bmaurer@ximian.com>
* FileTest.cs: Fix gonz's typo. Also, clean stuff up by using the
temp file api, rather than our own hack.
2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* FileTest.cs: yet more invalid array accesses removed.
2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* FileTest.cs: on unix there are no invalid chars and we were trying
to index beyond the end of the array.
2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* FileTest.cs: removed duplicate test. The same thing is done in
DeleteOpenStream.
2005-05-18 Sebastien Pouliot <sebastien@ximian.com>
* StreamCas.cs: New. CAS unit tests to test stack propagation for
BeginRead and BeginWrite.
* FileStreamCas.cs: Added tests to test stack propagation for
BeginRead and BeginWrite.
2005-05-09 Sebastien Pouliot <sebastien@ximian.com>
* DirectoryCas.cs: Fixed IsRunningOnWindows (inversed logic). That
didn't change the tests as the SecurityException occurs before the
parameters are checked (when all goes well ;-). Fixed for NET_2_0 too.
* DirectoryInfoTest.cs: Fixed PlatformID.Unix for NET_2_0.
2005-05-06 Ben Maurer <bmaurer@ximian.com>
* FileTest.cs (OpenAppend): Test for #71088.
2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* DirectoryInfoTest.cs: added test for bug #53173.
2005-04-09 Miguel de Icaza <miguel@novell.com>
* StreamWriterTest.cs: New test for bug #74513.
2005-03-24 Sebastien Pouliot <sebastien@ximian.com>
* DirectoryCas.cs: Added partial trust unit tests.
* DirectoryTest.cs: Added missing [Test] attribute to
SetCreationTimeException1.
* FileStreamCas.cs: New. CAS unit tests for FileStream.
* PathCas.cs: New. CAS unit tests for Path.
* PathTest.cs: Splitted TestGetPathRoot test in two so the second part
could be re-used in partial trust tests.
2005-03-15 Sebastien Pouliot <sebastien@ximian.com>
* FileStreamTest.cs: Added tests for all FileMode when a directory
doesn't exists. Added a test for UnauthorizedAccessException when a
directory is opened as a file.
2005-01-28 Sebastien Pouliot <sebastien@ximian.com>
* FileLoadExceptionCas.cs: Fixed failures under MS for NET_1_1.
* FileNotFoundExceptionCas.cs: Fixed failures under MS for NET_1_1.
2005-03-02 Raja R Harinath <rharinath@novell.com>
* FileStreamTest.cs (Constructor_InvalidFileHandle): Fix to work
on 64-bit platforms.
2005-02-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* FileTest.cs: test for invalid characters in file names.
2005-01-28 Sebastien Pouliot <sebastien@ximian.com>
* DirectoryCas.cs: New. Very limited permission tests for Directory.
Actually it's only there to support tests for System.Environment.
* FileLoadExceptionCas.cs: New. Permission tests for FileLoadException
* FileNotFoundExceptionCas.cs: New. Permission tests for
FileNotFoundException.
2005-01-19 Nick Drochak <ndrochak@gol.com>
* FileStreamTest.cs: Fix test regression on .NET. Need to close
stream so other tests don't fail.
2004-12-06 Atsushi Enomoto <atsushi@ximian.com>
* TextWriterTest.cs : added.
2004-12-04 Ben Maurer <bmaurer@ximian.com>
* DirectoryInfoTest.cs: Check for CreateSubdirectory with empty string.
2004-08-31 Nick Drochak <ndrochak@gol.com>
* StringWriterTest.cs: Eliminate ambiguity so csc can compile.
2004-06-21 Atsushi Enomoto <atsushi@ximian.com>
* FileStreamTest.cs : Added some tests on .ctor() without FileShare.
2004-06-21 Atsushi Enomoto <atsushi@ximian.com>
FileInfoTest.cs : more '/' and Path.DirectorySeparatorChar fixes
2004-06-21 Atsushi Enomoto <atsushi@ximian.com>
* DirectoryInfoTest.cs,
DirectoryTest.cs,
FileStreamTest.cs,
FileSystemInfoTest.cs:
Replace all '/' in path with Path.DirectorySeparatorChar.
2004-06-08 Duncan Mak <duncan@ximian.com>
* DirectoryTest.cs (GetParentOfRootDirectory): Add test for
GetParent from the root directory.
2004-06-07 Duncan Mak <duncan@ximian.com>
* FileStreamTest.cs (SetLengthWithClosedBaseStream): New test for
checking that the correct exception is thrown when the base stream
is closed.
2004-06-03 Sebastien Pouliot <sebastien@ximian.com>
* BufferedStreamTest.cs: Modified two tests (using newer helper
classes) to be more specific and avoid regressions of bugs like
#59534.
* StreamHelperTest.cs: New. Helper classes that provides read-only,
write-only or non-seekable stream.
2004-05-31 Sebastien Pouliot <sebastien@ximian.com>
* FileTest.cs: Added tests to confirm that Exists never throws
exceptions even for invalid filenames or for unexisting directories.
* PathTest.cs: Added windows-specific tests that shows that
ChangeExtension validate the input patch but doesn't validate the
resulting path.
2004-05-30 Sebastien Pouliot <sebastien@ximian.com>
* BufferedStreamTest.cs: Added tests for Position after SetLength,
SetLength after Close and Seek logic exception handling.
* FileStream.cs: Added test for invalid SeekOrigin in Seek. Lots of
new tests for exception handling (negatives, disposed) and test
reading a byte ast the end of the stream.
* MemoryStream.cs: Added test for Seek after Close.
2004-05-29 Sebastien Pouliot <sebastien@ximian.com>
* BinaryReader.cs: Added new cases to check exceptions thrown by Read
methods.
2004-05-26 Atsushi Enomoto <atsushi@ximian.com>
* FileInfoTest.cs : more incorrect \ fix.
2004-05-26 Sebastien Pouliot <sebastien@ximian.com>
* BufferedStreamTest.cs: Added new unit tests for exceptions.
* FileStreamTest.cs: Added new tests for integer overflow checks.
* StringReaderTest.cs: Added new tests for integer overflow checks.
2003-05-26 Atsushi Enomoto <atsushi@ximian.com>
* FileInfoTest.cs : incorrect \ fix. added more cases.
2003-05-26 Atsushi Enomoto <atsushi@ximian.com>
* FileInfoTest.cs : added tests for ToString().
2004-05-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* DirectoryTest.cs: added test from bug 58875.
2004-05-24 Sebastien Pouliot <sebastien@ximian.com>
* MemoryStreamTest.cs: Test that we zeroize old data when we manipulate
the length of the stream. Verify that we throw the same exceptions as
MS fx.
* StreamReaderTest.cs: New tests for integer overflow and null handling
* StreamWriterTest.cs: New tests for integer overflow, disposed
exceptions and null handling.
* StringWriterTest.cs: New tests for integer overflow and disposed
exceptions.
2004-05-20 Sebastien Pouliot <sebastien@ximian.com>
* MemoryStream.cs: SetUp is now public (required for new nunit).
2004-05-20 Jackson Harper <jackson@ximian.com>
* DirectoryInfoTest.cs: Add test for CreateSubdirectory.
2004-04-12 David Sheldon <dave-mono@earth.li>
* BinaryReaderTest.cs: Changed series of bytes in
ReadDecimal to be a cleaner representation of a real
decimal, as was not a technically correct decimal.
2004-04-01 Lluis Sanchez Gual <lluis@ximian.com>
* BufferedStreamTest.cs: Added test for Position.
2003-04-03 Atsushi Enomoto <atsushi@ximian.com>
* PathTest.cs : Added more patterns on TestChangeExtension().
2004-02-16 Jackson Harper <jackson@ximian.com>
* FileTest.cs: We do not need to convert to local time because we
are getting creation time, not utc time.
2004-01-31 David Sheldon <dave-mono@earth.li>
* FileSystemInfoTest.cs: Added code to skip CreationTime tests
on Unix, as it doesn't support them.
2004-01-31 David Sheldon <dave-mono@earth.li>
* FileSystemInfoTest.cs: Change tests for default times to
be TimeZone agnostic by conversion to universal time before
testing.
2004-01-22 David Sheldon <dave-mono@earth.li>
* FileStreamTest.cs: CtorArgumentOutOfRangeException4, we were
testing for this ecveption, but the other parameters were also
invalid. Made them correct. We don't care that MS throw
exceptions in a different order do we?
2004-01-22 David Sheldon <dave-mono@earth.li>
* DirectoryTest.cs: Added Ignore to the CreationTime tests,
as Unix filesystems don't support them. Should we only ignore
them on Unix?
2004-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* PathTest.cs: added some unix-only tests for GetFullPath.
2004-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* PathTest.cs: a couple of tests for bugs.
2003-01-06 Atsushi Enomoto <atsushi@ximian.com>
* DirectoryTest.cs : remoed incorrect args.
2003-12-25 Atsushi Enomoto <atsushi@ximian.com>
* PathTest.cs : On Unix, "Z:" can be valid local file.
And cosmetic character case fix.
2003-12-19 Nick Drochak <ndrochak@gol.com>
* PathTest.cs: Make tests pass on .NET 1.1. Probably still
need to handle different directory and volume separators for
other OS's.
2003-12-17 Atsushi Enomoto <atsushi@ximian.com>
* PathTest.cs :
Added more GetPathRoot and GetFullPath tests for windows.
Fixed incorrectly specified arguments in the previous patch.
2003-12-17 Atsushi Enomoto <atsushi@ximian.com>
* PathTest.cs : Added more tests for IsPathRooted, HasExtension
and GetExtension.
2003-12-17 Atsushi Enomoto <atsushi@ximian.com>
* DirectoryTests.cs : Added some SetCurrentDirectory tests.
2003-12-17 Nick Drochak <ndrochak@gol.com>
* FileStreamTest.cs: Ok, it wasn't a 1.1 thing. The test simply would
fail randomly because location 12 was sometimes a file handle.
2003-12-16 Nick Drochak <ndrochak@gol.com>
* FileStreamTest.cs: Exception not thrown in .NET 1.1.
And Happy Birthday to Me!
2003-11-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* StringReaderTest.cs: added test from bug #51020.
2003-10-21 Nick Drochak <ndrochak@gol.com>
* BufferedSTreamTest.cs: Make TearDown smarter about possible
null member value.
2003-07-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* MemoryStreamTest.cs: added a couple of tests for WriteByte.
2003-06-30 Zoltan Varga <vargaz@freemail.hu>
* FileStreamTest.cs: New tests for flushing when disposed and zero
buffer size.
2003-06-18 Nick Drochak <ndrochak@gol.com>
* FileSystemInfoTest.cs: Simplify a bit.
2003-06-18 Nick Drochak <ndrochak@gol.com>
* FileSystemInfoTest.cs: Works on .NET 1.1 now. If these values are
different on 1.0 then we need to wrap with a #if NET_1_1.
2003-06-12 Zoltan Varga <vargaz@freemail.hu>
* FileStreamTest.cs: New tests for recently fixed bugs.
2003-06-08 Ville Palo <vi64pa@kolumbus.fi>
* BinaryWriterTest.cs:
* BinaryReaderTest.cs:
* DirectoryTest.cs:
* FileTest.cs: now works with ms.net, clean ups, nunit2, ...
2003-05-29 Nick Drochak <ndrochak@gol.com>
* ms_run_test.sh: added .NET verion of helper script
* BinaryReaderTest.cs: fix my oversight
* BinaryWriterTest.cs: cleanups
* BufferedStreamTest.cs: cleanups
* DirectoryInfoTest.cs: cleanups
* DirectoryTest.cs: cleanups
* FileStreamTest.cs: cleanups
2003-05-29 Nick Drochak <ndrochak@gol.com>
* BinaryReaderTest.cs:
* BinaryWriterTest.cs:
* DirectoryInfoTest.cs:
* DirectoryTest.cs:
* FileInfoTest.cs:
* FileStreamTest.cs:
* FileSystemInfoTest.cs: Stop throwing exceptions on windows, and sub-
class from Assertion for brevity.
2003-05-22 Ben Maurer <bmaurer@users.sourceforge.net>
StringWriterTest.cs: Added tests from bug #43431 (by Ian MacLean).
2003-05-22 Nick Drochak <ndrochak@gol.com>
* StreamReaderTest.cs:
* StreamWriterTest.cs: Forgot nunit v2 TestFixture attribute
2003-05-22 Zoltan Varga <vargaz@freemail.hu>
* FileTest.cs: Added tests for moving directories.
2003-05-20 Nick Drochak <ndrochak@gol.com>
* FileTest.cs:
* StreamReaderTest.cs:
* StreamWriterTest.cs: Workaround for process holding on to directory
that prevented cleanup and deletion.
2003-05-19 Ville Palo <vi64pa@kolumbus.fi>
* DirectoryTest.cs: Added tests for GetDirectories() and
GetFiles ()
2003-05-18 Ben Maurer <bmaurer@users.sourceforge.net>
* *.cs Cleaned up tests to work around bug that prevented
System.IO from seeing directories starting with '.'
2003-05-15 Ville Palo <vi64pa@kolumbus.fi>
* FileStreamTest.cs: more cleaning
2003-05-15 Ville Palo <vi64pa@kolumbus.fi>
* StreamReaderTest.cs:
* StreamWriterTest.cs: now use temp-dir
2003-05-15 Ville Palo <vi64pa@kolumbus.fi>
* BinaryReaderTest.cs:
* BinaryWriterTest.cs:
* BufferedStreamTest.cs:
* DirectoryInfoTest.cs:
* DirectoryTest.cs:
* FileInfoTest.cs:
* FileSystemInfoTest.cs: clean up, now use temp-dir
2003-05-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* PathTest.cs: added test for GetFullPath (".") and ".."
2003-05-13 Ville Palo <vi64pa@kolumbus.fi>
* FileStreamTest.cs:
* FileTest.cs: Clean up. Now use temp directory. also some nunit2
changes
2003-05-98 Ville Palo <vi64pa@kolumbus.fi>
* FileSystemInfoTest.cs; new file
2003-05-07 Ben Maurer <bmaurer@users.sourceforge.net>
* PathTest.cs
Even more GetFullPath () tests. Includes UNC tests.
2003-05-06 Ville Palo <vi64pa@kolumbus.fi>
* DirectoryInfoTest.cs: Removed OS-specific test
2003-05-06 Ville Palo <vi64pa@kolumbus.fi>
* DirectoryTest: Fixed Utc errors
* FileTest: Fixes Utc errors. Now these tests works in other
timezones too.
2003-05-04 Ben Maurer <bmaurer@users.sourceforge.net>
* PathTest.cs
Added new tests for GetFullPath () that include a path with
. and ..
2003-05-05 Ville Palo <vi64pa@kolumbus.fi>
* DirectoryInfoTest.cs: new file.
2003-05-04 Ville Palo <vi64pa@kolumbus.fi>
* FileInfoTest.cs: new file.
* FileStreamTest.cs: new tests for Seek ()
2003-04-29 Ville Palo <vi64pa@kolumbus.fi>
* FileStreamTest.cs: Tests for Flush() adn one one more test for
Ctor exceptions
2003-04-25 Ville Palo <vi64pa@kolumbus.fi>
* FileTest.cs: more tests..
2003-04-24 Ville Palo <vi64pa@kolumbus.fi>
* FileTest.cs: Fixed tests and added some.
2003-04-22 Ville Palo <vi64pa@kolumbus.fi>
* FileTest.cs: More tests.
2003-04-21 Ville Palo <vi64pa@kolumbus.fi>
* DirectoryTest.cs: lots of new tests. and some fixes and clean ups
2003-04-20 Miguel de Icaza <miguel@ximian.com>
* StringReaderTest.cs: Update test to include read-past-the-end
2003-04-20 Ville Palo <vi64pa@kolumbus.fi>
* DirectoryTest.cs: new file
2003-04-16 Ville Palo <vi64pa@kolumbus.fi>
* BufferedStreamTest.cs: new file
2003-04-14 Ville Palo <vi64pa@kolumbus.fi>
* BinaryWriterTest.cs: Added new file.
2003-04-13 Ville Palo <vi64pa@kolumbus.fi>
* BinaryReaderTest.cs: Added lots of tests. Somehow I missed that
there are already testcases for BinaryStreamReader :/
2003-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* FileStreamTest.cs: added more tests by Gert Driesen
(gert.driesen@ardatis.com).
2003-04-12 Ville Palo <vi64pa@kolumbus.fi>
* FileStreamTest.cs More tests.
2003-04-11 Ville Palo <vi64pa@kolumbus.fi>
* FileStreamTest.cs: File Added and some tests in it.
2003-04-11 Ville Palo <vi64pa@kolumbus.fi>
* StringReaderTest.cs: Tests for close and some exceptions
2003-04-11 Ville Palo <vi64pa@kolumbus.fi>
* StringWriterTest.cs: Added some Exception tests.
2003-04-10 Ville Palo <vi64pa@kolumbus.fi>
* StringWriterTest.cs: Added couple of tests.
2003-04-05 Nick Drochak <ndrochak@gol.com>
* PathTest.cs: Use nunit2 convention for exception test.
2003-03-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* StreamReaderTest.cs: added test for exception when the nase stream is
closed. Make the reader.CurrentEncoding test work.
2003-03-05 Dick Porter <dick@ximian.com>
* MemoryStreamTest.cs: Some more tests
2003-03-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* MemoryStreamTest.cs: some nunit2 love. Added a bunch of new tests.
2003-02-05 Nick Drochak <ndrochak@gol.com>
* FileTest.cs: Have setup remove files before testing as well in case
tests were interrupted before TearDown could be called in a previous
run. Also test for specific exception in TestGetCreationTime ().
2003-01-28 Zoltan Varga <vargaz@freemail.hu>
* FileTest.cs: Added tests for GetCreationTime.
2002-12-21 Nick Drochak <ndrochak@gol.com>
* all: make tests build and run under nunit2
2002-09-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* PathTest.cs: added test for null argument in IsPathRooted.
2002-09-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* BinaryReaderTest.cs: added more tests.
Patch from Eduardo GarcĂa Cebollero (kiwnix@yahoo.es).
2002-09-19 Nick Drochak <ndrochak@gol.com>
* StreamReaderTest.cs: Pinpoint error closing streams
2002-09-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* FileTest.cs: don't leave AFile.txt open.
2002-09-08 Nick Drochak <ndrochak@gol.com>
* PathTest.cs (TestCombine): XP puts it's system root in WINDOWS not
WINNT.
2002-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* PathTest.cs: some fixes to make it work also on unix.
2002-08-30 Nick Drochak <ndrochak@gol.com>
* PathTest.cs (TestGetPathRoot): Don't assume current directory will
be on the C: drive (mine wasn't).
2002-08-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* PathTest.cs: improved.
2002-08-26 Nick Drochak <ndrochak@gol.com>
* BinaryReaderTest.cs: Closing the stream twice doesn not throw any
exceptions on .NET.
2002-08-17 Eduardo Garcia Cebollero <kiwnix@yahoo.es>
* AllTests.cs: added BinaryReaderTest.Suite.
* BinaryReaderTest.cs: New file.
2002-06-12 Nick Drochak <ndrochak@gol.com>
* StringReaderTest.cs: Regression test for a bug that we had were
ReadLine() was not returning null when the string ended with newline.
2002-05-15 Nick Drochak <ndrochak@gol.com>
* StreamReaderTest.cs:
* StreamWriterTest.cs:
Make sure invalid file name has invalid characters in it. These are
platform dependant.
2002-05-14 Nick Drochak <ndrochak@gol.com>
* FileTest.cs: Delete temporary files after each test method; Catch
unexpected exceptions and report them; Make some Assert messages
unique; Make sure temp files exist before trying Move and Delete, etc.
2002-05-13 Mike Gray <mike@mikegray.org>
* FileTest.cs: Adding better tests for File.Delete, File.Move
2002-05-12 Mike Gray <mike@mikegray.org>
* FileTest.cs: Adding better tests for File.Exists, File.Create,
and File.Copy
2002-05-12 Nick Drochak <ndrochak@gol.com>
* StringTest.cs: Add a couple more tests.
* PathTest.cs: Make tests work a bit better on W32 and Linux.
2002/05/10 Nick Drochak <ndrochak@gol.com>
* StreamWriterTest.cs: Use "resources" directory and use OS friendly
directory separator characters. This makes the tests run correctly
against MS.NET, but not yet in mono on Linux.
2002/05/08 Nick Drochak <ndrochak@gol.com>
* FileTest.cs: Use "resources" directory and use OS friendly
directory separator characters. This makes the tests run correctly
against MS.NET, but not yet in mono on Linux.
2002-05-08 Nick Drochak <ndrochak@gol.com>
* StreamWriter.cs: Wrap a try-catch around block of code to find out
what exception is being thrown when it shouldn't.
2002-05-07 Nick Drochak <ndrochak@gol.com>
* FileTest.cs: Added TestOpen() from Mike Gray.
* AllTests.cs: Added missing FileTest.Suite as pointed out by Mike
as well.
2002-05-05 Nick Drochak <ndrochak@gol.com>
* StreamReaderTest.cs: Change location of sample file. In some places,
use memory stream instead of file stream to eliminate reliance on file
io for now. That area is still a bit immature. Added a bunch of
markers to tell where errors were occuring.
* resources: New directory to hold files open/read, etc. by unit
tests.
2002-05-01 Nick Drochak <ndrochak@gol.com>
* StreamReaderTest.cs:
* StreamWriterTest.cs: Catch and display exception info where it wasn't
being caught before.
2002-03-02 Jason Diamond <jason@injektilo.org>
* StringReader.cs: Added test for peeking and reading at the end of
a string.
2002-02-28 Nick Drochak <ndrochak@gol.com>
* MemoryStreamTest.cs
* StreamWriterTest.cs
* StringReaderTest.cs: Fix test bugs found by running against mscorlib.
AssertEquals() requires the expected and atual values to be the same
type if they are to be considered equal.
2002-02-05 Duncan Mak <duncan@ximian.com>
* FileTest.cs: Added to CVS. However, this portion of the code
can't be tested right now.
2002-01-20 Nick Drochak <ndrochak@gol.com>
* AllTests.cs: removed duplicate MemoryStream test
* MemoryStreamTest.cs: wrapped try-catch blocks around read/write/seek
tests. These were throwing exceptions that NUnit wasn't catching. I
don't think it used to behave this way before .NET.1.0.
2003-05-04 Ben Maurer <bmaurer@users.sourceforge.net>
* Path.cs
(CanonicalizePath) Added optimizations per Miguel's requests.
|