]> git.lizzy.rs Git - rust.git/blob - src/string.rs
Merge pull request #3126 from topecongiro/issue-3117
[rust.git] / src / string.rs
1 // Copyright 2015 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // Format string literals.
12
13 use regex::Regex;
14 use unicode_segmentation::UnicodeSegmentation;
15
16 use config::Config;
17 use shape::Shape;
18 use utils::wrap_str;
19
20 const MIN_STRING: usize = 10;
21
22 /// Describes the layout of a piece of text.
23 pub struct StringFormat<'a> {
24     /// The opening sequence of characters for the piece of text
25     pub opener: &'a str,
26     /// The closing sequence of characters for the piece of text
27     pub closer: &'a str,
28     /// The opening sequence of characters for a line
29     pub line_start: &'a str,
30     /// The closing sequence of characters for a line
31     pub line_end: &'a str,
32     /// The allocated box to fit the text into
33     pub shape: Shape,
34     /// Trim trailing whitespaces
35     pub trim_end: bool,
36     pub config: &'a Config,
37 }
38
39 impl<'a> StringFormat<'a> {
40     pub fn new(shape: Shape, config: &'a Config) -> StringFormat<'a> {
41         StringFormat {
42             opener: "\"",
43             closer: "\"",
44             line_start: " ",
45             line_end: "\\",
46             shape,
47             trim_end: false,
48             config,
49         }
50     }
51
52     /// Returns the maximum number of graphemes that is possible on a line while taking the
53     /// indentation into account.
54     ///
55     /// If we cannot put at least a single character per line, the rewrite won't succeed.
56     fn max_chars_with_indent(&self) -> Option<usize> {
57         Some(
58             self.shape
59                 .width
60                 .checked_sub(self.opener.len() + self.line_end.len() + 1)?
61                 + 1,
62         )
63     }
64
65     /// Like max_chars_with_indent but the indentation is not subtracted.
66     /// This allows to fit more graphemes from the string on a line when
67     /// SnippetState::EndWithLineFeed.
68     fn max_chars_without_indent(&self) -> Option<usize> {
69         Some(self.config.max_width().checked_sub(self.line_end.len())?)
70     }
71 }
72
73 pub fn rewrite_string<'a>(
74     orig: &str,
75     fmt: &StringFormat<'a>,
76     newline_max_chars: usize,
77 ) -> Option<String> {
78     let max_chars_with_indent = fmt.max_chars_with_indent()?;
79     let max_chars_without_indent = fmt.max_chars_without_indent()?;
80     let indent_with_newline = fmt.shape.indent.to_string_with_newline(fmt.config);
81     let indent_without_newline = fmt.shape.indent.to_string(fmt.config);
82
83     // Strip line breaks.
84     // With this regex applied, all remaining whitespaces are significant
85     let strip_line_breaks_re = Regex::new(r"([^\\](\\\\)*)\\[\n\r][[:space:]]*").unwrap();
86     let stripped_str = strip_line_breaks_re.replace_all(orig, "$1");
87
88     let graphemes = UnicodeSegmentation::graphemes(&*stripped_str, false).collect::<Vec<&str>>();
89
90     // `cur_start` is the position in `orig` of the start of the current line.
91     let mut cur_start = 0;
92     let mut result = String::with_capacity(
93         stripped_str
94             .len()
95             .checked_next_power_of_two()
96             .unwrap_or(usize::max_value()),
97     );
98     result.push_str(fmt.opener);
99
100     // Snip a line at a time from `stripped_str` until it is used up. Push the snippet
101     // onto result.
102     let mut cur_max_chars = max_chars_with_indent;
103     let is_bareline_ok = fmt.line_start.is_empty() || is_whitespace(fmt.line_start);
104     loop {
105         // All the input starting at cur_start fits on the current line
106         if graphemes.len() - cur_start <= cur_max_chars {
107             for (i, grapheme) in graphemes[cur_start..].iter().enumerate() {
108                 if is_line_feed(grapheme) {
109                     // take care of blank lines
110                     result = trim_right_but_line_feed(fmt.trim_end, result);
111                     result.push_str("\n");
112                     if !is_bareline_ok && cur_start + i + 1 < graphemes.len() {
113                         result.push_str(&indent_without_newline);
114                         result.push_str(fmt.line_start);
115                     }
116                 } else {
117                     result.push_str(grapheme);
118                 }
119             }
120             result = trim_right_but_line_feed(fmt.trim_end, result);
121             break;
122         }
123
124         // The input starting at cur_start needs to be broken
125         match break_string(
126             cur_max_chars,
127             fmt.trim_end,
128             fmt.line_end,
129             &graphemes[cur_start..],
130         ) {
131             SnippetState::LineEnd(line, len) => {
132                 result.push_str(&line);
133                 result.push_str(fmt.line_end);
134                 result.push_str(&indent_with_newline);
135                 result.push_str(fmt.line_start);
136                 cur_max_chars = newline_max_chars;
137                 cur_start += len;
138             }
139             SnippetState::EndWithLineFeed(line, len) => {
140                 if line == "\n" && fmt.trim_end {
141                     result = result.trim_right().to_string();
142                 }
143                 result.push_str(&line);
144                 if is_bareline_ok {
145                     // the next line can benefit from the full width
146                     cur_max_chars = max_chars_without_indent;
147                 } else {
148                     result.push_str(&indent_without_newline);
149                     result.push_str(fmt.line_start);
150                     cur_max_chars = max_chars_with_indent;
151                 }
152                 cur_start += len;
153             }
154             SnippetState::EndOfInput(line) => {
155                 result.push_str(&line);
156                 break;
157             }
158         }
159     }
160
161     result.push_str(fmt.closer);
162     wrap_str(result, fmt.config.max_width(), fmt.shape)
163 }
164
165 /// Returns the index to the end of the url if the given string includes an
166 /// URL or alike. Otherwise, returns None;
167 fn detect_url(s: &[&str], index: usize) -> Option<usize> {
168     let start = match s[..=index].iter().rposition(|g| is_whitespace(g)) {
169         Some(pos) => pos + 1,
170         None => 0,
171     };
172     if s.len() < start + 8 {
173         return None;
174     }
175     let prefix = s[start..start + 8].concat();
176     if prefix.starts_with("https://")
177         || prefix.starts_with("http://")
178         || prefix.starts_with("ftp://")
179         || prefix.starts_with("file://")
180     {
181         match s[index..].iter().position(|g| is_whitespace(g)) {
182             Some(pos) => Some(index + pos - 1),
183             None => Some(s.len() - 1),
184         }
185     } else {
186         None
187     }
188 }
189
190 /// Trims whitespaces to the right except for the line feed character.
191 fn trim_right_but_line_feed(trim_end: bool, result: String) -> String {
192     let whitespace_except_line_feed = |c: char| c.is_whitespace() && c != '\n';
193     if trim_end && result.ends_with(whitespace_except_line_feed) {
194         result
195             .trim_right_matches(whitespace_except_line_feed)
196             .to_string()
197     } else {
198         result
199     }
200 }
201
202 /// Result of breaking a string so it fits in a line and the state it ended in.
203 /// The state informs about what to do with the snippet and how to continue the breaking process.
204 #[derive(Debug, PartialEq)]
205 enum SnippetState {
206     /// The input could not be broken and so rewriting the string is finished.
207     EndOfInput(String),
208     /// The input could be broken and the returned snippet should be ended with a
209     /// `[StringFormat::line_end]`. The next snippet needs to be indented.
210     ///
211     /// The returned string is the line to print out and the number is the length that got read in
212     /// the text being rewritten. That length may be greater than the returned string if trailing
213     /// whitespaces got trimmed.
214     LineEnd(String, usize),
215     /// The input could be broken but a newline is present that cannot be trimmed. The next snippet
216     /// to be rewritten *could* use more width than what is specified by the given shape. For
217     /// example with a multiline string, the next snippet does not need to be indented, allowing
218     /// more characters to be fit within a line.
219     ///
220     /// The returned string is the line to print out and the number is the length that got read in
221     /// the text being rewritten.
222     EndWithLineFeed(String, usize),
223 }
224
225 fn not_whitespace_except_line_feed(g: &str) -> bool {
226     is_line_feed(g) || !is_whitespace(g)
227 }
228
229 /// Break the input string at a boundary character around the offset `max_chars`. A boundary
230 /// character is either a punctuation or a whitespace.
231 fn break_string(max_chars: usize, trim_end: bool, line_end: &str, input: &[&str]) -> SnippetState {
232     let break_at = |index /* grapheme at index is included */| {
233         // Take in any whitespaces to the left/right of `input[index]` while
234         // preserving line feeds
235         let index_minus_ws = input[0..=index]
236             .iter()
237             .rposition(|grapheme| not_whitespace_except_line_feed(grapheme))
238             .unwrap_or(index);
239         // Take into account newlines occurring in input[0..=index], i.e., the possible next new
240         // line. If there is one, then text after it could be rewritten in a way that the available
241         // space is fully used.
242         for (i, grapheme) in input[0..=index].iter().enumerate() {
243             if is_line_feed(grapheme) {
244                 if i <= index_minus_ws {
245                     let mut line = &input[0..i].concat()[..];
246                     if trim_end {
247                         line = line.trim_right();
248                     }
249                     return SnippetState::EndWithLineFeed(format!("{}\n", line), i + 1);
250                 }
251                 break;
252             }
253         }
254
255         let mut index_plus_ws = index;
256         for (i, grapheme) in input[index + 1..].iter().enumerate() {
257             if !trim_end && is_line_feed(grapheme) {
258                 return SnippetState::EndWithLineFeed(
259                     input[0..=index + 1 + i].concat(),
260                     index + 2 + i,
261                 );
262             } else if not_whitespace_except_line_feed(grapheme) {
263                 index_plus_ws = index + i;
264                 break;
265             }
266         }
267
268         if trim_end {
269             SnippetState::LineEnd(input[0..=index_minus_ws].concat(), index_plus_ws + 1)
270         } else {
271             SnippetState::LineEnd(input[0..=index_plus_ws].concat(), index_plus_ws + 1)
272         }
273     };
274
275     // Find the position in input for breaking the string
276     if line_end.is_empty()
277         && trim_end
278         && !is_whitespace(input[max_chars - 1])
279         && is_whitespace(input[max_chars])
280     {
281         // At a breaking point already
282         // The line won't invalidate the rewriting because:
283         // - no extra space needed for the line_end character
284         // - extra whitespaces to the right can be trimmed
285         return break_at(max_chars - 1);
286     }
287     if let Some(url_index_end) = detect_url(input, max_chars) {
288         let index_plus_ws = url_index_end
289             + input[url_index_end..]
290                 .iter()
291                 .skip(1)
292                 .position(|grapheme| not_whitespace_except_line_feed(grapheme))
293                 .unwrap_or(0);
294         return if trim_end {
295             SnippetState::LineEnd(input[..=url_index_end].concat(), index_plus_ws + 1)
296         } else {
297             return SnippetState::LineEnd(input[..=index_plus_ws].concat(), index_plus_ws + 1);
298         };
299     }
300     match input[0..max_chars]
301         .iter()
302         .rposition(|grapheme| is_whitespace(grapheme))
303     {
304         // Found a whitespace and what is on its left side is big enough.
305         Some(index) if index >= MIN_STRING => break_at(index),
306         // No whitespace found, try looking for a punctuation instead
307         _ => match input[0..max_chars]
308             .iter()
309             .rposition(|grapheme| is_punctuation(grapheme))
310         {
311             // Found a punctuation and what is on its left side is big enough.
312             Some(index) if index >= MIN_STRING => break_at(index),
313             // Either no boundary character was found to the left of `input[max_chars]`, or the line
314             // got too small. We try searching for a boundary character to the right.
315             _ => match input[max_chars..]
316                 .iter()
317                 .position(|grapheme| is_whitespace(grapheme) || is_punctuation(grapheme))
318             {
319                 // A boundary was found after the line limit
320                 Some(index) => break_at(max_chars + index),
321                 // No boundary to the right, the input cannot be broken
322                 None => SnippetState::EndOfInput(input.concat()),
323             },
324         },
325     }
326 }
327
328 fn is_line_feed(grapheme: &str) -> bool {
329     grapheme.as_bytes()[0] == b'\n'
330 }
331
332 fn is_whitespace(grapheme: &str) -> bool {
333     grapheme.chars().all(|c| c.is_whitespace())
334 }
335
336 fn is_punctuation(grapheme: &str) -> bool {
337     match grapheme.as_bytes()[0] {
338         b':' | b',' | b';' | b'.' => true,
339         _ => false,
340     }
341 }
342
343 #[cfg(test)]
344 mod test {
345     use super::{break_string, detect_url, rewrite_string, SnippetState, StringFormat};
346     use config::Config;
347     use shape::{Indent, Shape};
348     use unicode_segmentation::UnicodeSegmentation;
349
350     #[test]
351     fn issue343() {
352         let config = Default::default();
353         let fmt = StringFormat::new(Shape::legacy(2, Indent::empty()), &config);
354         rewrite_string("eq_", &fmt, 2);
355     }
356
357     #[test]
358     fn should_break_on_whitespace() {
359         let string = "Placerat felis. Mauris porta ante sagittis purus.";
360         let graphemes = UnicodeSegmentation::graphemes(&*string, false).collect::<Vec<&str>>();
361         assert_eq!(
362             break_string(20, false, "", &graphemes[..]),
363             SnippetState::LineEnd("Placerat felis. ".to_string(), 16)
364         );
365         assert_eq!(
366             break_string(20, true, "", &graphemes[..]),
367             SnippetState::LineEnd("Placerat felis.".to_string(), 16)
368         );
369     }
370
371     #[test]
372     fn should_break_on_punctuation() {
373         let string = "Placerat_felis._Mauris_porta_ante_sagittis_purus.";
374         let graphemes = UnicodeSegmentation::graphemes(&*string, false).collect::<Vec<&str>>();
375         assert_eq!(
376             break_string(20, false, "", &graphemes[..]),
377             SnippetState::LineEnd("Placerat_felis.".to_string(), 15)
378         );
379     }
380
381     #[test]
382     fn should_break_forward() {
383         let string = "Venenatis_tellus_vel_tellus. Aliquam aliquam dolor at justo.";
384         let graphemes = UnicodeSegmentation::graphemes(&*string, false).collect::<Vec<&str>>();
385         assert_eq!(
386             break_string(20, false, "", &graphemes[..]),
387             SnippetState::LineEnd("Venenatis_tellus_vel_tellus. ".to_string(), 29)
388         );
389         assert_eq!(
390             break_string(20, true, "", &graphemes[..]),
391             SnippetState::LineEnd("Venenatis_tellus_vel_tellus.".to_string(), 29)
392         );
393     }
394
395     #[test]
396     fn nothing_to_break() {
397         let string = "Venenatis_tellus_vel_tellus";
398         let graphemes = UnicodeSegmentation::graphemes(&*string, false).collect::<Vec<&str>>();
399         assert_eq!(
400             break_string(20, false, "", &graphemes[..]),
401             SnippetState::EndOfInput("Venenatis_tellus_vel_tellus".to_string())
402         );
403     }
404
405     #[test]
406     fn significant_whitespaces() {
407         let string = "Neque in sem.      \n      Pellentesque tellus augue.";
408         let graphemes = UnicodeSegmentation::graphemes(&*string, false).collect::<Vec<&str>>();
409         assert_eq!(
410             break_string(15, false, "", &graphemes[..]),
411             SnippetState::EndWithLineFeed("Neque in sem.      \n".to_string(), 20)
412         );
413         assert_eq!(
414             break_string(25, false, "", &graphemes[..]),
415             SnippetState::EndWithLineFeed("Neque in sem.      \n".to_string(), 20)
416         );
417
418         assert_eq!(
419             break_string(15, true, "", &graphemes[..]),
420             SnippetState::LineEnd("Neque in sem.".to_string(), 19)
421         );
422         assert_eq!(
423             break_string(25, true, "", &graphemes[..]),
424             SnippetState::EndWithLineFeed("Neque in sem.\n".to_string(), 20)
425         );
426     }
427
428     #[test]
429     fn big_whitespace() {
430         let string = "Neque in sem.            Pellentesque tellus augue.";
431         let graphemes = UnicodeSegmentation::graphemes(&*string, false).collect::<Vec<&str>>();
432         assert_eq!(
433             break_string(20, false, "", &graphemes[..]),
434             SnippetState::LineEnd("Neque in sem.            ".to_string(), 25)
435         );
436         assert_eq!(
437             break_string(20, true, "", &graphemes[..]),
438             SnippetState::LineEnd("Neque in sem.".to_string(), 25)
439         );
440     }
441
442     #[test]
443     fn newline_in_candidate_line() {
444         let string = "Nulla\nconsequat erat at massa. Vivamus id mi.";
445
446         let graphemes = UnicodeSegmentation::graphemes(&*string, false).collect::<Vec<&str>>();
447         assert_eq!(
448             break_string(25, false, "", &graphemes[..]),
449             SnippetState::EndWithLineFeed("Nulla\n".to_string(), 6)
450         );
451         assert_eq!(
452             break_string(25, true, "", &graphemes[..]),
453             SnippetState::EndWithLineFeed("Nulla\n".to_string(), 6)
454         );
455
456         let mut config: Config = Default::default();
457         config.set().max_width(27);
458         let fmt = StringFormat::new(Shape::legacy(25, Indent::empty()), &config);
459         let rewritten_string = rewrite_string(string, &fmt, 27);
460         assert_eq!(
461             rewritten_string,
462             Some("\"Nulla\nconsequat erat at massa. \\\n Vivamus id mi.\"".to_string())
463         );
464     }
465
466     #[test]
467     fn last_line_fit_with_trailing_whitespaces() {
468         let string = "Vivamus id mi.  ";
469         let config: Config = Default::default();
470         let mut fmt = StringFormat::new(Shape::legacy(25, Indent::empty()), &config);
471
472         fmt.trim_end = true;
473         let rewritten_string = rewrite_string(string, &fmt, 25);
474         assert_eq!(rewritten_string, Some("\"Vivamus id mi.\"".to_string()));
475
476         fmt.trim_end = false; // default value of trim_end
477         let rewritten_string = rewrite_string(string, &fmt, 25);
478         assert_eq!(rewritten_string, Some("\"Vivamus id mi.  \"".to_string()));
479     }
480
481     #[test]
482     fn last_line_fit_with_newline() {
483         let string = "Vivamus id mi.\nVivamus id mi.";
484         let config: Config = Default::default();
485         let fmt = StringFormat {
486             opener: "",
487             closer: "",
488             line_start: "// ",
489             line_end: "",
490             shape: Shape::legacy(100, Indent::from_width(&config, 4)),
491             trim_end: true,
492             config: &config,
493         };
494
495         let rewritten_string = rewrite_string(string, &fmt, 100);
496         assert_eq!(
497             rewritten_string,
498             Some("Vivamus id mi.\n    // Vivamus id mi.".to_string())
499         );
500     }
501
502     #[test]
503     fn overflow_in_non_string_content() {
504         let comment = "Aenean metus.\nVestibulum ac lacus. Vivamus porttitor";
505         let config: Config = Default::default();
506         let fmt = StringFormat {
507             opener: "",
508             closer: "",
509             line_start: "// ",
510             line_end: "",
511             shape: Shape::legacy(30, Indent::from_width(&config, 8)),
512             trim_end: true,
513             config: &config,
514         };
515
516         assert_eq!(
517             rewrite_string(comment, &fmt, 30),
518             Some(
519                 "Aenean metus.\n        // Vestibulum ac lacus. Vivamus\n        // porttitor"
520                     .to_string()
521             )
522         );
523     }
524
525     #[test]
526     fn overflow_in_non_string_content_with_line_end() {
527         let comment = "Aenean metus.\nVestibulum ac lacus. Vivamus porttitor";
528         let config: Config = Default::default();
529         let fmt = StringFormat {
530             opener: "",
531             closer: "",
532             line_start: "// ",
533             line_end: "@",
534             shape: Shape::legacy(30, Indent::from_width(&config, 8)),
535             trim_end: true,
536             config: &config,
537         };
538
539         assert_eq!(
540             rewrite_string(comment, &fmt, 30),
541             Some(
542                 "Aenean metus.\n        // Vestibulum ac lacus. Vivamus@\n        // porttitor"
543                     .to_string()
544             )
545         );
546     }
547
548     #[test]
549     fn blank_line_with_non_empty_line_start() {
550         let config: Config = Default::default();
551         let mut fmt = StringFormat {
552             opener: "",
553             closer: "",
554             line_start: "// ",
555             line_end: "",
556             shape: Shape::legacy(30, Indent::from_width(&config, 4)),
557             trim_end: true,
558             config: &config,
559         };
560
561         let comment = "Aenean metus. Vestibulum\n\nac lacus. Vivamus porttitor";
562         assert_eq!(
563             rewrite_string(comment, &fmt, 30),
564             Some(
565                 "Aenean metus. Vestibulum\n    //\n    // ac lacus. Vivamus porttitor".to_string()
566             )
567         );
568
569         fmt.shape = Shape::legacy(15, Indent::from_width(&config, 4));
570         let comment = "Aenean\n\nmetus. Vestibulum ac lacus. Vivamus porttitor";
571         assert_eq!(
572             rewrite_string(comment, &fmt, 15),
573             Some(
574                 r#"Aenean
575     //
576     // metus. Vestibulum
577     // ac lacus. Vivamus
578     // porttitor"#
579                     .to_string()
580             )
581         );
582     }
583
584     #[test]
585     fn retain_blank_lines() {
586         let config: Config = Default::default();
587         let fmt = StringFormat {
588             opener: "",
589             closer: "",
590             line_start: "// ",
591             line_end: "",
592             shape: Shape::legacy(20, Indent::from_width(&config, 4)),
593             trim_end: true,
594             config: &config,
595         };
596
597         let comment = "Aenean\n\nmetus. Vestibulum ac lacus.\n\n";
598         assert_eq!(
599             rewrite_string(comment, &fmt, 20),
600             Some(
601                 "Aenean\n    //\n    // metus. Vestibulum ac\n    // lacus.\n    //\n".to_string()
602             )
603         );
604
605         let comment = "Aenean\n\nmetus. Vestibulum ac lacus.\n";
606         assert_eq!(
607             rewrite_string(comment, &fmt, 20),
608             Some("Aenean\n    //\n    // metus. Vestibulum ac\n    // lacus.\n".to_string())
609         );
610
611         let comment = "Aenean\n        \nmetus. Vestibulum ac lacus.";
612         assert_eq!(
613             rewrite_string(comment, &fmt, 20),
614             Some("Aenean\n    //\n    // metus. Vestibulum ac\n    // lacus.".to_string())
615         );
616     }
617
618     #[test]
619     fn boundary_on_edge() {
620         let config: Config = Default::default();
621         let mut fmt = StringFormat {
622             opener: "",
623             closer: "",
624             line_start: "// ",
625             line_end: "",
626             shape: Shape::legacy(13, Indent::from_width(&config, 4)),
627             trim_end: true,
628             config: &config,
629         };
630
631         let comment = "Aenean metus. Vestibulum ac lacus.";
632         assert_eq!(
633             rewrite_string(comment, &fmt, 13),
634             Some("Aenean metus.\n    // Vestibulum ac\n    // lacus.".to_string())
635         );
636
637         fmt.trim_end = false;
638         let comment = "Vestibulum ac lacus.";
639         assert_eq!(
640             rewrite_string(comment, &fmt, 13),
641             Some("Vestibulum \n    // ac lacus.".to_string())
642         );
643
644         fmt.trim_end = true;
645         fmt.line_end = "\\";
646         let comment = "Vestibulum ac lacus.";
647         assert_eq!(
648             rewrite_string(comment, &fmt, 13),
649             Some("Vestibulum\\\n    // ac lacus.".to_string())
650         );
651     }
652
653     #[test]
654     fn detect_urls() {
655         let string = "aaa http://example.org something";
656         let graphemes = UnicodeSegmentation::graphemes(&*string, false).collect::<Vec<&str>>();
657         assert_eq!(detect_url(&graphemes, 8), Some(21));
658
659         let string = "https://example.org something";
660         let graphemes = UnicodeSegmentation::graphemes(&*string, false).collect::<Vec<&str>>();
661         assert_eq!(detect_url(&graphemes, 0), Some(18));
662
663         let string = "aaa ftp://example.org something";
664         let graphemes = UnicodeSegmentation::graphemes(&*string, false).collect::<Vec<&str>>();
665         assert_eq!(detect_url(&graphemes, 8), Some(20));
666
667         let string = "aaa file://example.org something";
668         let graphemes = UnicodeSegmentation::graphemes(&*string, false).collect::<Vec<&str>>();
669         assert_eq!(detect_url(&graphemes, 8), Some(21));
670
671         let string = "aaa http not an url";
672         let graphemes = UnicodeSegmentation::graphemes(&*string, false).collect::<Vec<&str>>();
673         assert_eq!(detect_url(&graphemes, 6), None);
674
675         let string = "aaa file://example.org";
676         let graphemes = UnicodeSegmentation::graphemes(&*string, false).collect::<Vec<&str>>();
677         assert_eq!(detect_url(&graphemes, 8), Some(21));
678     }
679 }