Home | History | Annotate | Download | only in net

Lines Matching defs:uris

28     private URI[] uris;
31 if (uris != null) {
32 return uris;
35 uris = new URI[] {
81 return uris;
617 // test URIs with host names with different casing
623 // test URIs with one undefined component
629 // test URIs with one undefined component
726 // test URIs with empty string authority
732 // test URIs with port number
738 // test URIs with host names with different casing
749 URI[] uris = getUris();
764 for (int i = 0; i < uris.length; i++) {
765 String result = uris[i].getAuthority();
768 uris[i].toString()
782 // tests for URIs with empty string authority component
827 URI[] uris = getUris();
836 for (int i = 0; i < uris.length; i++) {
837 String result = uris[i].getFragment();
840 fail("Error: For URI \"" + uris[i].toString()
851 URI[] uris = getUris();
857 for (int i = 0; i < uris.length; i++) {
858 String result = uris[i].getHost();
861 fail("Error: For URI \"" + uris[i].toString()
872 URI[] uris = getUris();
882 for (int i = 0; i < uris.length; i++) {
883 String result = uris[i].getPath();
886 fail("Error: For URI \"" + uris[i].toString()
897 URI[] uris = getUris();
902 for (int i = 0; i < uris.length; i++) {
903 int result = uris[i].getPort();
904 assertTrue("Error: For URI \"" + uris[i].toString()
942 URI[] uris = getUris();
951 for (int i = 0; i < uris.length; i++) {
952 String result = uris[i].getQuery();
955 fail("Error: For URI \"" + uris[i].toString()
966 URI[] uris = getUris();
980 for (int i = 0; i < uris.length; i++) {
981 String result = uris[i].getRawAuthority();
984 fail("Error: For URI \"" + uris[i].toString()
995 URI[] uris = getUris();
1006 for (int i = 0; i < uris.length; i++) {
1007 String result = uris[i].getRawFragment();
1010 fail("Error: For URI \"" + uris[i].toString()
1021 URI[] uris = getUris();
1032 for (int i = 0; i < uris.length; i++) {
1033 String result = uris[i].getRawPath();
1036 fail("Error: For URI \"" + uris[i].toString()
1047 URI[] uris = getUris();
1059 for (int i = 0; i < uris.length; i++) {
1060 String result = uris[i].getRawQuery();
1063 fail("Error: For URI \"" + uris[i].toString()
1075 URI[] uris = getUris();
1092 for (int i = 0; i < uris.length; i++) {
1093 String result = uris[i].getRawSchemeSpecificPart();
1095 fail("Error: For URI \"" + uris[i].toString()
1106 URI[] uris = getUris();
1118 for (int i = 0; i < uris.length; i++) {
1119 String result = uris[i].getRawUserInfo();
1122 fail("Error: For URI \"" + uris[i].toString()
1133 URI[] uris = getUris();
1139 for (int i = 0; i < uris.length; i++) {
1140 String result = uris[i].getScheme();
1143 fail("Error: For URI \"" + uris[i].toString()
1154 URI[] uris = getUris();
1172 uris.length; i++) {
1173 String result = uris[i].getSchemeSpecificPart();
1175 fail("Error: For URI \"" + uris[i].toString()
1187 URI[] uris = getUris();
1200 for (int i = 0; i < uris.length; i++) {
1201 String result = uris[i].getUserInfo();
1204 fail("Error: For URI \"" + uris[i].toString()
1432 // registry based uris
1433 URI[] uris = null;
1434 uris = new URI[] {
1489 // these URIs do not have valid server based authorities,
1494 // requested on these uris
1495 for (int i = 0; i < uris.length; i++) {
1497 URI uri = uris[i].parseServerAuthority();
1499 + uris[i].toString());
1590 // Both URIs with empty hosts
1628 // two URIs with empty hosts
1723 URI[] uris = getUris();
1739 for (int i = 0; i < uris.length; i++) {
1740 String result = uris[i].toASCIIString();
1741 assertTrue("Error: For URI \"" + uris[i].toString()
1774 URI[] uris = getUris();
1794 for (int i = 0; i < uris.length; i++) {
1795 String result = uris[i].toString();
1796 assertTrue("Error: For URI \"" + uris[i].toString()
1819 // not all the URIs can be translated into valid URLs