Welcome to mirror list, hosted at ThFree Co, Russian Federation.

FakeNuGetSettings.cs « MonoDevelop.PackageManagement.Tests.Helpers « MonoDevelop.PackageManagement.Tests « MonoDevelop.PackageManagement « addins « src « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3826e4a4175020e2b50d7a5461159b77f0723347 (plain)
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
//
// FakeNuGetSettings.cs
//
// Author:
//       Matt Ward <matt.ward@xamarin.com>
//
// Copyright (c) 2016 Xamarin Inc. (http://xamarin.com)
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.

using System;
using System.Collections.Generic;
using NuGet.Configuration;

namespace MonoDevelop.PackageManagement.Tests.Helpers
{
	class FakeNuGetSettings : ISettings
	{
		public string FileName { get; set; } = "NuGet.Config";

		public IEnumerable<ISettings> Priority {
			get { yield return this; }
		}

		public string Root { get; set; } = string.Empty;

		public event EventHandler SettingsChanged;

		void OnSettingsChanged (object sender, EventArgs e)
		{
			SettingsChanged?.Invoke (sender, e);
		}

		public bool DeleteSection (string section)
		{
			throw new NotImplementedException ();
		}

		public bool DeleteValue (string section, string key)
		{
			throw new NotImplementedException ();
		}

		public IList<KeyValuePair<string, string>> GetNestedValues (string section, string subSection)
		{
			return new List<KeyValuePair<string, string>> ();
		}

#pragma warning disable CS0618

		public Dictionary<string, List<SettingValue>> SettingValues = new Dictionary<string, List<SettingValue>> ();

		public IList<SettingValue> GetSettingValues (string section, bool isPath = false)
		{
			List<SettingValue> settings = null;
			if (SettingValues.TryGetValue (section, out settings))
				return settings;
			return new List<SettingValue> ();
		}

		public Dictionary<string, string> Values = new Dictionary<string, string> ();

		public string GetValue (string section, string key, bool isPath = false)
		{
			string value = null;
			if (Values.TryGetValue (GetKey (section, key), out value))
				return value;
			return null;
		}

		public void SetNestedValues (string section, string subSection, IList<KeyValuePair<string, string>> values)
		{
			throw new NotImplementedException ();
		}

		public void SetValue (string section, string key, string value)
		{
			Values [GetKey (section, key)] = value;
		}

		public void SetValues (string section, List<SettingValue> values)
		{
			SettingValues [section] = values;
		}

		public void SetValues (string section, IReadOnlyList<SettingValue> values)
		{
			throw new NotImplementedException ();
		}

		public void UpdateSections (string section, IReadOnlyList<SettingValue> values)
		{
			throw new NotImplementedException ();
		}

		static string GetKey (string section, string key)
		{
			return $"{section}-{key}";
		}

		public IReadOnlyList<string> GetAllSubsections (string section)
		{
			throw new NotImplementedException ();
		}

		public IReadOnlyList<SettingValue> GetNestedSettingValues (string section, string subSection)
		{
			var values = new List<SettingValue> ();
			return values.AsReadOnly ();
		}

		public void UpdateSubsections (string section, string subsection, IReadOnlyList<SettingValue> values)
		{
			throw new NotImplementedException ();
		}

		public void SetNestedSettingValues (string section, string subsection, IList<SettingValue> values)
		{
			throw new NotImplementedException ();
		}

#pragma warning restore CS0618

		public void SaveToDisk ()
		{
		}

		public IList<string> GetConfigFilePaths ()
		{
			var paths = new List<string> ();
			paths.Add (FileName);
			return paths;
		}

		public IList<string> GetConfigRoots ()
		{
			throw new NotImplementedException ();
		}

		public SettingSection GetSection (string sectionName)
		{
			return null;
		}

		public void AddOrUpdate (string sectionName, SettingItem item)
		{
			throw new NotImplementedException ();
		}

		public void Remove (string sectionName, SettingItem item)
		{
			throw new NotImplementedException ();
		}
	}
}