]> git.lizzy.rs Git - rust.git/blob - src/string.rs
Use concat() instead of join("")
[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 substracted.
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 occuring 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 + input[url_index_end..]
289             .iter()
290             .skip(1)
291             .position(|grapheme| not_whitespace_except_line_feed(grapheme))
292             .unwrap_or(0);
293         return if trim_end {
294             SnippetState::LineEnd(input[..=url_index_end].concat(), index_plus_ws + 1)
295         } else {
296             return SnippetState::LineEnd(input[..=index_plus_ws].concat(), index_plus_ws + 1);
297         };
298     }
299     match input[0..max_chars]
300         .iter()
301         .rposition(|grapheme| is_whitespace(grapheme))
302     {
303         // Found a whitespace and what is on its left side is big enough.
304         Some(index) if index >= MIN_STRING => break_at(index),
305         // No whitespace found, try looking for a punctuation instead
306         _ => match input[0..max_chars]
307             .iter()
308             .rposition(|grapheme| is_punctuation(grapheme))
309         {
310             // Found a punctuation and what is on its left side is big enough.
311             Some(index) if index >= MIN_STRING => break_at(index),
312             // Either no boundary character was found to the left of `input[max_chars]`, or the line
313             // got too small. We try searching for a boundary character to the right.
314             _ => match input[max_chars..]
315                 .iter()
316                 .position(|grapheme| is_whitespace(grapheme) || is_punctuation(grapheme))
317             {
318                 // A boundary was found after the line limit
319                 Some(index) => break_at(max_chars + index),
320                 // No boundary to the right, the input cannot be broken
321                 None => SnippetState::EndOfInput(input.concat()),
322             },
323         },
324     }
325 }
326
327 fn is_line_feed(grapheme: &str) -> bool {
328     grapheme.as_bytes()[0] == b'\n'
329 }
330
331 fn is_whitespace(grapheme: &str) -> bool {
332     grapheme.chars().all(|c| c.is_whitespace())
333 }
334
335 fn is_punctuation(grapheme: &str) -> bool {
336     match grapheme.as_bytes()[0] {
337         b':' | b',' | b';' | b'.' => true,
338         _ => false,
339     }
340 }
341
342 #[cfg(test)]
343 mod test {
344     use super::{break_string, detect_url, rewrite_string, SnippetState, StringFormat};
345     use config::Config;
346     use shape::{Indent, Shape};
347     use unicode_segmentation::UnicodeSegmentation;
348
349     #[test]
350     fn issue343() {
351         let config = Default::default();
352         let fmt = StringFormat::new(Shape::legacy(2, Indent::empty()), &config);
353         rewrite_string("eq_", &fmt, 2);
354     }
355
356     #[test]
357     fn should_break_on_whitespace() {
358         let string = "Placerat felis. Mauris porta ante sagittis purus.";
359         let graphemes = UnicodeSegmentation::graphemes(&*string, false).collect::<Vec<&str>>();
360         assert_eq!(
361             break_string(20, false, "", &graphemes[..]),
362             SnippetState::LineEnd("Placerat felis. ".to_string(), 16)
363         );
364         assert_eq!(
365             break_string(20, true, "", &graphemes[..]),
366             SnippetState::LineEnd("Placerat felis.".to_string(), 16)
367         );
368     }
369
370     #[test]
371     fn should_break_on_punctuation() {
372         let string = "Placerat_felis._Mauris_porta_ante_sagittis_purus.";
373         let graphemes = UnicodeSegmentation::graphemes(&*string, false).collect::<Vec<&str>>();
374         assert_eq!(
375             break_string(20, false, "", &graphemes[..]),
376             SnippetState::LineEnd("Placerat_felis.".to_string(), 15)
377         );
378     }
379
380     #[test]
381     fn should_break_forward() {
382         let string = "Venenatis_tellus_vel_tellus. Aliquam aliquam dolor at justo.";
383         let graphemes = UnicodeSegmentation::graphemes(&*string, false).collect::<Vec<&str>>();
384         assert_eq!(
385             break_string(20, false, "", &graphemes[..]),
386             SnippetState::LineEnd("Venenatis_tellus_vel_tellus. ".to_string(), 29)
387         );
388         assert_eq!(
389             break_string(20, true, "", &graphemes[..]),
390             SnippetState::LineEnd("Venenatis_tellus_vel_tellus.".to_string(), 29)
391         );
392     }
393
394     #[test]
395     fn nothing_to_break() {
396         let string = "Venenatis_tellus_vel_tellus";
397         let graphemes = UnicodeSegmentation::graphemes(&*string, false).collect::<Vec<&str>>();
398         assert_eq!(
399             break_string(20, false, "", &graphemes[..]),
400             SnippetState::EndOfInput("Venenatis_tellus_vel_tellus".to_string())
401         );
402     }
403
404     #[test]
405     fn significant_whitespaces() {
406         let string = "Neque in sem.      \n      Pellentesque tellus augue.";
407         let graphemes = UnicodeSegmentation::graphemes(&*string, false).collect::<Vec<&str>>();
408         assert_eq!(
409             break_string(15, false, "", &graphemes[..]),
410             SnippetState::EndWithLineFeed("Neque in sem.      \n".to_string(), 20)
411         );
412         assert_eq!(
413             break_string(25, false, "", &graphemes[..]),
414             SnippetState::EndWithLineFeed("Neque in sem.      \n".to_string(), 20)
415         );
416
417         assert_eq!(
418             break_string(15, true, "", &graphemes[..]),
419             SnippetState::LineEnd("Neque in sem.".to_string(), 19)
420         );
421         assert_eq!(
422             break_string(25, true, "", &graphemes[..]),
423             SnippetState::EndWithLineFeed("Neque in sem.\n".to_string(), 20)
424         );
425     }
426
427     #[test]
428     fn big_whitespace() {
429         let string = "Neque in sem.            Pellentesque tellus augue.";
430         let graphemes = UnicodeSegmentation::graphemes(&*string, false).collect::<Vec<&str>>();
431         assert_eq!(
432             break_string(20, false, "", &graphemes[..]),
433             SnippetState::LineEnd("Neque in sem.            ".to_string(), 25)
434         );
435         assert_eq!(
436             break_string(20, true, "", &graphemes[..]),
437             SnippetState::LineEnd("Neque in sem.".to_string(), 25)
438         );
439     }
440
441     #[test]
442     fn newline_in_candidate_line() {
443         let string = "Nulla\nconsequat erat at massa. Vivamus id mi.";
444
445         let graphemes = UnicodeSegmentation::graphemes(&*string, false).collect::<Vec<&str>>();
446         assert_eq!(
447             break_string(25, false, "", &graphemes[..]),
448             SnippetState::EndWithLineFeed("Nulla\n".to_string(), 6)
449         );
450         assert_eq!(
451             break_string(25, true, "", &graphemes[..]),
452             SnippetState::EndWithLineFeed("Nulla\n".to_string(), 6)
453         );
454
455         let mut config: Config = Default::default();
456         config.set().max_width(27);
457         let fmt = StringFormat::new(Shape::legacy(25, Indent::empty()), &config);
458         let rewritten_string = rewrite_string(string, &fmt, 27);
459         assert_eq!(
460             rewritten_string,
461             Some("\"Nulla\nconsequat erat at massa. \\\n Vivamus id mi.\"".to_string())
462         );
463     }
464
465     #[test]
466     fn last_line_fit_with_trailing_whitespaces() {
467         let string = "Vivamus id mi.  ";
468         let config: Config = Default::default();
469         let mut fmt = StringFormat::new(Shape::legacy(25, Indent::empty()), &config);
470
471         fmt.trim_end = true;
472         let rewritten_string = rewrite_string(string, &fmt, 25);
473         assert_eq!(rewritten_string, Some("\"Vivamus id mi.\"".to_string()));
474
475         fmt.trim_end = false; // default value of trim_end
476         let rewritten_string = rewrite_string(string, &fmt, 25);
477         assert_eq!(rewritten_string, Some("\"Vivamus id mi.  \"".to_string()));
478     }
479
480     #[test]
481     fn last_line_fit_with_newline() {
482         let string = "Vivamus id mi.\nVivamus id mi.";
483         let config: Config = Default::default();
484         let fmt = StringFormat {
485             opener: "",
486             closer: "",
487             line_start: "// ",
488             line_end: "",
489             shape: Shape::legacy(100, Indent::from_width(&config, 4)),
490             trim_end: true,
491             config: &config,
492         };
493
494         let rewritten_string = rewrite_string(string, &fmt, 100);
495         assert_eq!(
496             rewritten_string,
497             Some("Vivamus id mi.\n    // Vivamus id mi.".to_string())
498         );
499     }
500
501     #[test]
502     fn overflow_in_non_string_content() {
503         let comment = "Aenean metus.\nVestibulum ac lacus. Vivamus porttitor";
504         let config: Config = Default::default();
505         let fmt = StringFormat {
506             opener: "",
507             closer: "",
508             line_start: "// ",
509             line_end: "",
510             shape: Shape::legacy(30, Indent::from_width(&config, 8)),
511             trim_end: true,
512             config: &config,
513         };
514
515         assert_eq!(
516             rewrite_string(comment, &fmt, 30),
517             Some(
518                 "Aenean metus.\n        // Vestibulum ac lacus. Vivamus\n        // porttitor"
519                     .to_string()
520             )
521         );
522     }
523
524     #[test]
525     fn overflow_in_non_string_content_with_line_end() {
526         let comment = "Aenean metus.\nVestibulum ac lacus. Vivamus porttitor";
527         let config: Config = Default::default();
528         let fmt = StringFormat {
529             opener: "",
530             closer: "",
531             line_start: "// ",
532             line_end: "@",
533             shape: Shape::legacy(30, Indent::from_width(&config, 8)),
534             trim_end: true,
535             config: &config,
536         };
537
538         assert_eq!(
539             rewrite_string(comment, &fmt, 30),
540             Some(
541                 "Aenean metus.\n        // Vestibulum ac lacus. Vivamus@\n        // porttitor"
542                     .to_string()
543             )
544         );
545     }
546
547     #[test]
548     fn blank_line_with_non_empty_line_start() {
549         let config: Config = Default::default();
550         let mut fmt = StringFormat {
551             opener: "",
552             closer: "",
553             line_start: "// ",
554             line_end: "",
555             shape: Shape::legacy(30, Indent::from_width(&config, 4)),
556             trim_end: true,
557             config: &config,
558         };
559
560         let comment = "Aenean metus. Vestibulum\n\nac lacus. Vivamus porttitor";
561         assert_eq!(
562             rewrite_string(comment, &fmt, 30),
563             Some(
564                 "Aenean metus. Vestibulum\n    //\n    // ac lacus. Vivamus porttitor".to_string()
565             )
566         );
567
568         fmt.shape = Shape::legacy(15, Indent::from_width(&config, 4));
569         let comment = "Aenean\n\nmetus. Vestibulum ac lacus. Vivamus porttitor";
570         assert_eq!(
571             rewrite_string(comment, &fmt, 15),
572             Some(
573                 r#"Aenean
574     //
575     // metus. Vestibulum
576     // ac lacus. Vivamus
577     // porttitor"#
578                     .to_string()
579             )
580         );
581     }
582
583     #[test]
584     fn retain_blank_lines() {
585         let config: Config = Default::default();
586         let fmt = StringFormat {
587             opener: "",
588             closer: "",
589             line_start: "// ",
590             line_end: "",
591             shape: Shape::legacy(20, Indent::from_width(&config, 4)),
592             trim_end: true,
593             config: &config,
594         };
595
596         let comment = "Aenean\n\nmetus. Vestibulum ac lacus.\n\n";
597         assert_eq!(
598             rewrite_string(comment, &fmt, 20),
599             Some(
600                 "Aenean\n    //\n    // metus. Vestibulum ac\n    // lacus.\n    //\n".to_string()
601             )
602         );
603
604         let comment = "Aenean\n\nmetus. Vestibulum ac lacus.\n";
605         assert_eq!(
606             rewrite_string(comment, &fmt, 20),
607             Some("Aenean\n    //\n    // metus. Vestibulum ac\n    // lacus.\n".to_string())
608         );
609
610         let comment = "Aenean\n        \nmetus. Vestibulum ac lacus.";
611         assert_eq!(
612             rewrite_string(comment, &fmt, 20),
613             Some("Aenean\n    //\n    // metus. Vestibulum ac\n    // lacus.".to_string())
614         );
615     }
616
617     #[test]
618     fn boundary_on_edge() {
619         let config: Config = Default::default();
620         let mut fmt = StringFormat {
621             opener: "",
622             closer: "",
623             line_start: "// ",
624             line_end: "",
625             shape: Shape::legacy(13, Indent::from_width(&config, 4)),
626             trim_end: true,
627             config: &config,
628         };
629
630         let comment = "Aenean metus. Vestibulum ac lacus.";
631         assert_eq!(
632             rewrite_string(comment, &fmt, 13),
633             Some("Aenean metus.\n    // Vestibulum ac\n    // lacus.".to_string())
634         );
635
636         fmt.trim_end = false;
637         let comment = "Vestibulum ac lacus.";
638         assert_eq!(
639             rewrite_string(comment, &fmt, 13),
640             Some("Vestibulum \n    // ac lacus.".to_string())
641         );
642
643         fmt.trim_end = true;
644         fmt.line_end = "\\";
645         let comment = "Vestibulum ac lacus.";
646         assert_eq!(
647             rewrite_string(comment, &fmt, 13),
648             Some("Vestibulum\\\n    // ac lacus.".to_string())
649         );
650     }
651
652     #[test]
653     fn detect_urls() {
654         let string = "aaa http://example.org something";
655         let graphemes = UnicodeSegmentation::graphemes(&*string, false).collect::<Vec<&str>>();
656         assert_eq!(detect_url(&graphemes, 8), Some(21));
657
658         let string = "https://example.org something";
659         let graphemes = UnicodeSegmentation::graphemes(&*string, false).collect::<Vec<&str>>();
660         assert_eq!(detect_url(&graphemes, 0), Some(18));
661
662         let string = "aaa ftp://example.org something";
663         let graphemes = UnicodeSegmentation::graphemes(&*string, false).collect::<Vec<&str>>();
664         assert_eq!(detect_url(&graphemes, 8), Some(20));
665
666         let string = "aaa file://example.org something";
667         let graphemes = UnicodeSegmentation::graphemes(&*string, false).collect::<Vec<&str>>();
668         assert_eq!(detect_url(&graphemes, 8), Some(21));
669
670         let string = "aaa http not an url";
671         let graphemes = UnicodeSegmentation::graphemes(&*string, false).collect::<Vec<&str>>();
672         assert_eq!(detect_url(&graphemes, 6), None);
673
674         let string = "aaa file://example.org";
675         let graphemes = UnicodeSegmentation::graphemes(&*string, false).collect::<Vec<&str>>();
676         assert_eq!(detect_url(&graphemes, 8), Some(21));
677     }
678 }