Commit 43334428 authored by Nick Thomas's avatar Nick Thomas

Merge branch 'id-support-markdown-kind-hover-format' into 'master'

LSIF: Support markdown-like content format

See merge request gitlab-org/gitlab!63213
parents 7b06f6bc 5899cfc8
...@@ -50,9 +50,29 @@ func (ts *truncatableString) MarshalJSON() ([]byte, error) { ...@@ -50,9 +50,29 @@ func (ts *truncatableString) MarshalJSON() ([]byte, error) {
return json.Marshal(ts.Value) return json.Marshal(ts.Value)
} }
func newCodeHovers(contents json.RawMessage) ([]*codeHover, error) {
var rawContents []json.RawMessage
if err := json.Unmarshal(contents, &rawContents); err != nil {
rawContents = []json.RawMessage{contents}
}
codeHovers := []*codeHover{}
for _, rawContent := range rawContents {
c, err := newCodeHover(rawContent)
if err != nil {
return nil, err
}
codeHovers = append(codeHovers, c)
}
return codeHovers, nil
}
func newCodeHover(content json.RawMessage) (*codeHover, error) { func newCodeHover(content json.RawMessage) (*codeHover, error) {
// Hover value can be either an object: { "value": "func main()", "language": "go" } // Hover value can be either an object: { "value": "func main()", "language": "go" }
// Or a string with documentation // Or a string with documentation
// Or a markdown object: { "value": "```go\nfunc main()\n```", "kind": "markdown" }
// We try to unmarshal the content into a string and if we fail, we unmarshal it into an object // We try to unmarshal the content into a string and if we fail, we unmarshal it into an object
var c codeHover var c codeHover
if err := json.Unmarshal(content, &c.TruncatedValue); err != nil { if err := json.Unmarshal(content, &c.TruncatedValue); err != nil {
......
...@@ -64,21 +64,33 @@ func TestHighlight(t *testing.T) { ...@@ -64,21 +64,33 @@ func TestHighlight(t *testing.T) {
} }
for _, tt := range tests { for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) { t.Run(tt.name, func(t *testing.T) {
raw := []byte(fmt.Sprintf(`{"language":"%s","value":"%s"}`, tt.language, tt.value)) raw := []byte(fmt.Sprintf(`[{"language":"%s","value":"%s"}]`, tt.language, tt.value))
c, err := newCodeHover(json.RawMessage(raw)) c, err := newCodeHovers(json.RawMessage(raw))
require.NoError(t, err) require.NoError(t, err)
require.Equal(t, tt.want, c.Tokens) require.Len(t, c, 1)
require.Equal(t, tt.want, c[0].Tokens)
}) })
} }
} }
func TestMarkdown(t *testing.T) { func TestMarkdown(t *testing.T) {
value := `"This method reverses a string \n\n"` value := `["This method reverses a string \n\n"]`
c, err := newCodeHover(json.RawMessage(value)) c, err := newCodeHovers(json.RawMessage(value))
require.NoError(t, err) require.NoError(t, err)
require.Equal(t, "This method reverses a string \n\n", c.TruncatedValue.Value) require.Len(t, c, 1)
require.Equal(t, "This method reverses a string \n\n", c[0].TruncatedValue.Value)
}
func TestMarkdownContentsFormat(t *testing.T) {
value := `{"kind":"markdown","value":"some _markdown_ **text**"}`
c, err := newCodeHovers(json.RawMessage(value))
require.NoError(t, err)
require.Len(t, c, 1)
require.Equal(t, [][]token(nil), c[0].Tokens)
require.Equal(t, "some _markdown_ **text**", c[0].TruncatedValue.Value)
} }
func TestTruncatedValue(t *testing.T) { func TestTruncatedValue(t *testing.T) {
......
...@@ -18,7 +18,7 @@ type Hovers struct { ...@@ -18,7 +18,7 @@ type Hovers struct {
} }
type RawResult struct { type RawResult struct {
Contents []json.RawMessage `json:"contents"` Contents json.RawMessage `json:"contents"`
} }
type RawData struct { type RawData struct {
...@@ -107,14 +107,9 @@ func (h *Hovers) addData(line []byte) error { ...@@ -107,14 +107,9 @@ func (h *Hovers) addData(line []byte) error {
return err return err
} }
codeHovers := []*codeHover{} codeHovers, err := newCodeHovers(rawData.Result.Contents)
for _, rawContent := range rawData.Result.Contents { if err != nil {
c, err := newCodeHover(rawContent) return err
if err != nil {
return err
}
codeHovers = append(codeHovers, c)
} }
codeHoversData, err := json.Marshal(codeHovers) codeHoversData, err := json.Marshal(codeHovers)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment